Skip to content

Commit

Permalink
fix(image-viewer): add downloading toast when sharing videos/gifs
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasGGamerM committed May 27, 2024
1 parent 5e7f4bd commit e2e8173
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,8 @@ private void saveViaDownloadManager(Attachment att){
private void shareAfterDownloading(Attachment att){
Uri uri=Uri.parse(att.url);

Toast.makeText(activity, R.string.downloading, Toast.LENGTH_SHORT).show();

MastodonAPIController.runInBackground(()->{
try {
OkHttpClient client = new OkHttpClient();
Expand Down

0 comments on commit e2e8173

Please sign in to comment.