mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-31 07:10:14 -05:00
tiny grammar fix
This commit is contained in:
parent
151ae5a2a3
commit
56cdfa88c9
@ -215,7 +215,7 @@ public class MessageList
|
||||
public void folderLoading(String folder, boolean loading)
|
||||
{
|
||||
|
||||
if (mCurrentFolder.name.equals(folder))
|
||||
if (mCurrentFolder != null && mCurrentFolder.name.equals(folder))
|
||||
{
|
||||
mCurrentFolder.loading = loading;
|
||||
}
|
||||
@ -422,7 +422,7 @@ public class MessageList
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user