1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

tiny grammar fix

This commit is contained in:
Jesse Vincent 2009-12-27 16:50:44 +00:00
parent 151ae5a2a3
commit 56cdfa88c9

View File

@ -215,7 +215,7 @@ public class MessageList
public void folderLoading(String folder, boolean loading) public void folderLoading(String folder, boolean loading)
{ {
if (mCurrentFolder.name.equals(folder)) if (mCurrentFolder != null && mCurrentFolder.name.equals(folder))
{ {
mCurrentFolder.loading = loading; mCurrentFolder.loading = loading;
} }
@ -422,7 +422,7 @@ public class MessageList
/** /**
* On resume we refresh * On resume we refresh
* messages for any folder that is currently open. This guarantees that things * messages for the folder that is currently open. This guarantees that things
* like unread message count and read status are updated. * like unread message count and read status are updated.
*/ */
@Override @Override