Przeglądaj źródła

Fixed bug: toast message infinitely repeated

David A. Velasco 12 lat temu
rodzic
commit
801d8922d3

+ 1 - 0
src/com/owncloud/android/ui/activity/FileDisplayActivity.java

@@ -881,6 +881,7 @@ public class FileDisplayActivity extends SherlockFragmentActivity implements
                 }
                 
                 setSupportProgressBarIndeterminateVisibility(inProgress);
+                removeStickyBroadcast(intent);
                 
             }
             

+ 1 - 0
src/com/owncloud/android/ui/fragment/FileDetailFragment.java

@@ -733,6 +733,7 @@ public class FileDetailFragment extends SherlockFragment implements
                         String newName = (new File(uploadRemotePath)).getName();
                         Toast msg = Toast.makeText(getActivity().getApplicationContext(), String.format(getString(R.string.filedetails_renamed_in_upload_msg), newName), Toast.LENGTH_LONG);
                         msg.show();
+                        getSherlockActivity().removeStickyBroadcast(intent);    // not the best place to do this; a small refactorization of BroadcastReceivers should be done
                     }
                     updateFileDetails(false);    // it updates the buttons; must be called although !uploadWasFine; interrupted uploads still leave an incomplete file in the server
                 }