Fix an error with empty pages from downloaded chapters (images not found)
Cette révision appartient à :
Parent
4bf15a5a2c
révision
111ec5541f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -268,7 +268,7 @@ public class DownloadManager {
|
|||
// Get the filename for an image given the page
|
||||
private String getImageFilename(Page page) {
|
||||
String url = page.getImageUrl();
|
||||
return Uri.parse(url).getLastPathSegment();
|
||||
return Uri.parse(url).getLastPathSegment().replaceAll("[^\\sa-zA-Z0-9.-]", "_");
|
||||
}
|
||||
|
||||
private boolean isImageDownloaded(File imagePath) {
|
||||
|
|
Référencer dans un nouveau ticket