소스 검색

ManageSpaceActivity: kill the app after finishing cleanup

This will prevent the file list still being on the Recents view and other stuff like that.

Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
Álvaro Brey Vilas 3 년 전
부모
커밋
db74d67168
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/main/java/com/owncloud/android/ui/activity/ManageSpaceActivity.java

+ 2 - 1
src/main/java/com/owncloud/android/ui/activity/ManageSpaceActivity.java

@@ -137,7 +137,8 @@ public class ManageSpaceActivity extends AppCompatActivity implements Injectable
                         Snackbar.LENGTH_LONG
                 ).show();
             } else {
-                finish();
+                finishAndRemoveTask();
+                System.exit(0);
             }
         }