mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
Added regex to strip local manga chapter names (#983)
* added regex to strip non-alphanumeric characters in local filenames
This commit is contained in:
parent
0db4fcc27e
commit
ff4a015baa
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ class LocalSource(private val context: Context) : CatalogueSource {
|
||||||
} else {
|
} else {
|
||||||
chapterFile.nameWithoutExtension
|
chapterFile.nameWithoutExtension
|
||||||
}
|
}
|
||||||
val chapNameCut = chapName.replace(manga.title, "", true).trim()
|
val chapNameCut = chapName.replace(manga.title, "", true).trim(' ', '-', '_')
|
||||||
name = if (chapNameCut.isEmpty()) chapName else chapNameCut
|
name = if (chapNameCut.isEmpty()) chapName else chapNameCut
|
||||||
date_upload = chapterFile.lastModified()
|
date_upload = chapterFile.lastModified()
|
||||||
ChapterRecognition.parseChapterNumber(this, manga)
|
ChapterRecognition.parseChapterNumber(this, manga)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue