catch all exceptions

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2018-03-21 13:17:55 +01:00
parent 9a97e436d8
commit da077e0195
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -125,7 +125,7 @@ public class ThumbnailsCacheManager {
} else {
throw new FileNotFoundException("Thumbnail cache could not be opened");
}
} catch (java.io.IOException e) {
} catch (Exception e) {
Log_OC.d(TAG, e.getMessage());
mThumbnailCache = null;
}