mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
parent
252a54a436
commit
9967118a2f
2 changed files with 4 additions and 1 deletions
|
@ -293,6 +293,8 @@ public class MessageHelper {
|
|||
} else
|
||||
return getHtml(bp);
|
||||
}
|
||||
} catch (UnsupportedEncodingException ex) {
|
||||
throw ex;
|
||||
} catch (IOException ex) {
|
||||
Log.w(Helper.TAG, ex + "\n" + Log.getStackTraceString(ex));
|
||||
}
|
||||
|
@ -307,6 +309,8 @@ public class MessageHelper {
|
|||
if (s != null)
|
||||
return s;
|
||||
}
|
||||
} catch (UnsupportedEncodingException ex) {
|
||||
throw ex;
|
||||
} catch (IOException ex) {
|
||||
Log.w(Helper.TAG, ex + "\n" + Log.getStackTraceString(ex));
|
||||
}
|
||||
|
|
|
@ -475,7 +475,6 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
synchronizeMessage(folder, ifolder, (IMAPMessage) imessage);
|
||||
} catch (MessageRemovedException ex) {
|
||||
Log.w(Helper.TAG, folder.name + " " + ex + "\n" + Log.getStackTraceString(ex));
|
||||
|
||||
}
|
||||
} catch (Throwable ex) {
|
||||
Log.e(Helper.TAG, folder.name + " " + ex + "\n" + Log.getStackTraceString(ex));
|
||||
|
|
Loading…
Reference in a new issue