Handle database

This commit is contained in:
ZXY101
2023-08-09 10:27:58 +02:00
parent 4e645467bb
commit 416b832f63
17 changed files with 14576 additions and 258 deletions

View File

@@ -18,12 +18,12 @@
switch ($page?.route.id) {
case '/[manga]':
title = $currentManga?.title;
title = $currentManga?.[0].mokuroData.title;
back = '/';
break;
case '/[manga]/[volume]':
window.document.body.classList.add('reader');
title = $currentVolume?.title;
title = $currentVolume?.volumeName;
back = '/manga';
break;
case '/upload':