1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-02 08:35:08 -04:00

Don't Log.w() full stacktrace if file wasn't found

This happens regularly when AttachmentView tries to get a thumbnail for
attachments that haven't been downloaded yet.
This commit is contained in:
cketti 2012-01-24 22:14:21 +01:00
parent 4e5d116713
commit aae734c175

View File

@ -278,20 +278,17 @@ public class AttachmentProvider extends ContentProvider {
} }
private File getFile(String dbName, String id) throws FileNotFoundException { private File getFile(String dbName, String id) throws FileNotFoundException {
try { Account account = Preferences.getPreferences(getContext()).getAccount(dbName);
final Account account = Preferences.getPreferences(getContext()).getAccount(dbName);
final File attachmentsDir; File attachmentsDir = StorageManager.getInstance(K9.app).getAttachmentDirectory(dbName,
attachmentsDir = StorageManager.getInstance(K9.app).getAttachmentDirectory(dbName, account.getLocalStorageProviderId());
account.getLocalStorageProviderId());
final File file = new File(attachmentsDir, id); File file = new File(attachmentsDir, id);
if (!file.exists()) { if (!file.exists()) {
throw new FileNotFoundException(file.getAbsolutePath()); throw new FileNotFoundException(file.getAbsolutePath());
}
return file;
} catch (IOException e) {
Log.w(K9.LOG_TAG, null, e);
throw new FileNotFoundException(e.getMessage());
} }
return file;
} }
private Bitmap createThumbnail(String type, InputStream data) { private Bitmap createThumbnail(String type, InputStream data) {