mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Trying to fix some crashes
This commit is contained in:
		| @@ -8,7 +8,6 @@ import com.google.gson.reflect.TypeToken; | ||||
| import com.google.gson.stream.JsonReader; | ||||
|  | ||||
| import java.io.File; | ||||
| import java.io.FileNotFoundException; | ||||
| import java.io.FileOutputStream; | ||||
| import java.io.FileReader; | ||||
| import java.io.IOException; | ||||
| @@ -340,7 +339,7 @@ public class DownloadManager { | ||||
|                 Type collectionType = new TypeToken<List<Page>>() {}.getType(); | ||||
|                 pages = gson.fromJson(reader, collectionType); | ||||
|             } | ||||
|         } catch (FileNotFoundException e) { | ||||
|         } catch (Exception e) { | ||||
|             Timber.e(e.getCause(), e.getMessage()); | ||||
|         } finally { | ||||
|             if (reader != null) try { reader.close(); } catch (IOException e) { /* Do nothing */ } | ||||
|   | ||||
| @@ -43,7 +43,7 @@ public class DownloadQueue extends ArrayList<Download> { | ||||
|     } | ||||
|  | ||||
|     public Observable<Download> getStatusObservable() { | ||||
|         return statusSubject; | ||||
|         return statusSubject.onBackpressureBuffer(); | ||||
|     } | ||||
|  | ||||
|     public Observable<Download> getProgressObservable() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user