mirror of
https://github.com/nextcloud/android.git
synced 2024-11-24 06:05:42 +03:00
Fix crash when exiting preview of deleted file
Signed-off-by: ZetaTom <70907959+ZetaTom@users.noreply.github.com>
This commit is contained in:
parent
b188af0aca
commit
548977479e
2 changed files with 8 additions and 9 deletions
|
@ -90,7 +90,6 @@ import com.owncloud.android.lib.common.operations.RemoteOperationResult.ResultCo
|
|||
import com.owncloud.android.lib.common.utils.Log_OC;
|
||||
import com.owncloud.android.lib.resources.files.RestoreFileVersionRemoteOperation;
|
||||
import com.owncloud.android.lib.resources.files.SearchRemoteOperation;
|
||||
import com.owncloud.android.lib.resources.status.OwnCloudVersion;
|
||||
import com.owncloud.android.operations.CopyFileOperation;
|
||||
import com.owncloud.android.operations.CreateFolderOperation;
|
||||
import com.owncloud.android.operations.MoveFileOperation;
|
||||
|
@ -1733,8 +1732,9 @@ public class FileDisplayActivity extends FileActivity
|
|||
boolean fileAvailable = getStorageManager().fileExists(removedFile.getFileId());
|
||||
|
||||
if (leftFragment instanceof FileFragment && !fileAvailable && removedFile.equals(((FileFragment) leftFragment).getFile())) {
|
||||
if (leftFragment instanceof PreviewMediaFragment) {
|
||||
((PreviewMediaFragment) leftFragment).stopPreview(true);
|
||||
if (leftFragment instanceof PreviewMediaFragment previewMediaFragment) {
|
||||
previewMediaFragment.stopPreview(true);
|
||||
onBackPressed();
|
||||
}
|
||||
setFile(getStorageManager().getFileById(removedFile.getParentId()));
|
||||
resetTitleBarAndScrolling();
|
||||
|
@ -1742,8 +1742,8 @@ public class FileDisplayActivity extends FileActivity
|
|||
OCFile parentFile = getStorageManager().getFileById(removedFile.getParentId());
|
||||
if (parentFile != null && parentFile.equals(getCurrentDir())) {
|
||||
updateListOfFilesFragment(false);
|
||||
} else if (getLeftFragment() instanceof GalleryFragment) {
|
||||
((GalleryFragment) getLeftFragment()).onRefresh();
|
||||
} else if (getLeftFragment() instanceof GalleryFragment galleryFragment) {
|
||||
galleryFragment.onRefresh();
|
||||
}
|
||||
supportInvalidateOptionsMenu();
|
||||
} else {
|
||||
|
|
|
@ -673,10 +673,9 @@ public class PreviewMediaFragment extends FileFragment implements OnTouchListene
|
|||
}
|
||||
|
||||
public void stopPreview(boolean stopAudio) {
|
||||
OCFile file = getFile();
|
||||
if (MimeTypeUtil.isAudio(file) && stopAudio) {
|
||||
mediaPlayerServiceConnection.pause();
|
||||
} else if (MimeTypeUtil.isVideo(file)) {
|
||||
if (stopAudio && mediaPlayerServiceConnection != null) {
|
||||
mediaPlayerServiceConnection.stop();
|
||||
} else if (exoPlayer != null) {
|
||||
savedPlaybackPosition = exoPlayer.getCurrentPosition();
|
||||
exoPlayer.stop();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue