You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you attempt to upload volumes named Volume 1 and Volume 1.5, the image path Manga Title/Volume 1.5/Image.jpg will match against the volume key Manga Title/Volume 1 and be added to the Volume 1 instead of Volume 1.5. Afterwards, this causes the upload to fail as it can't find any images for Volume 1.5. Changing the line to
if(webkitRelativePath.startsWith(key+'/')){
seems to fix it.
The text was updated successfully, but these errors were encountered:
There is an issue with this line here
mokuro-reader/src/lib/upload/index.ts
Line 151 in a9f7bca
If you attempt to upload volumes named
Volume 1
andVolume 1.5
, the image pathManga Title/Volume 1.5/Image.jpg
will match against the volume keyManga Title/Volume 1
and be added to theVolume 1
instead ofVolume 1.5
. Afterwards, this causes the upload to fail as it can't find any images forVolume 1.5
. Changing the line toseems to fix it.
The text was updated successfully, but these errors were encountered: