mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 18:28:59 +03:00
catch all exceptions
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
9a97e436d8
commit
da077e0195
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue