Skip to content

Commit

Permalink
Merge pull request #447 from Logan676/fix_open_files_bug
Browse files Browse the repository at this point in the history
fixed bug when files not opened in ACTIVITIES tab
  • Loading branch information
Logan676 committed Nov 21, 2015
2 parents fcd43eb + c8baf6d commit 551bad2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private void viewFile(String repoID, String path) {
intent.putExtra("filePath", path);
intent.putExtra("account", getBrowserActivity().getAccount());
intent.putExtra("taskID", taskID);
startActivityForResult(intent, BrowserActivity.DOWNLOAD_FILE_REQUEST);
getBrowserActivity().startActivityForResult(intent, BrowserActivity.DOWNLOAD_FILE_REQUEST);
}

private class MyWebViewClient extends WebViewClient {
Expand Down

0 comments on commit 551bad2

Please sign in to comment.