diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsFragment.java b/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsFragment.java index 39c89f0e6..1833b0f1b 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsFragment.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/CommentsFragment.java @@ -267,7 +267,14 @@ public abstract class CommentsFragment extends ListFragment { @Override public void run() { synchronized (this) { - refreshUpdatesList(); + Activity activity = getActivity(); + if (activity != null) + activity.runOnUiThread(new Runnable() { + @Override + public void run() { + refreshUpdatesList(); + } + }); } } };