Skip to content

Commit

Permalink
Fixed Thread Problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jhbruhn committed Oct 1, 2014
1 parent c582ff1 commit 1485438
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,16 @@ protected Void doInBackground(Void... params) {
} finally {
ActiveAndroid.endTransaction();
}
loadRoute();

return null;
}

@Override
protected void onPostExecute(Void aVoid) {
super.onPostExecute(aVoid);

loadRoute();
}
}

}

0 comments on commit 1485438

Please sign in to comment.