Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59cfc8c4 authored by cketti's avatar cketti
Browse files

Merge pull request #1163 from philipwhiuk/syncDebug

Add the subject of the email to the debug when failing to sync
parents e9c40303 eade7652
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1298,7 +1298,7 @@ public class LocalFolder extends Folder<LocalMessage> implements Serializable {
                db.update("messages", cv, "id = ?", new String[] { Long.toString(oldMessageId) });
            }
        } catch (Exception e) {
            throw new MessagingException("Error appending message", e);
            throw new MessagingException("Error appending message: " + message.getSubject(), e);
        }
    }