mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-03-11 09:14:10 +00:00
fix: Volume resize function didn't work due to logical error
This commit is contained in:
parent
e58ae99cd7
commit
da9ac1b935
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ class VolumesBloc extends Bloc<VolumesEvent, VolumesState> {
|
||||||
if (state is! VolumesLoaded) {
|
if (state is! VolumesLoaded) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (ProvidersController.currentServerProvider?.isAuthorized ?? false) {
|
if (!(ProvidersController.currentServerProvider?.isAuthorized ?? false)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
getIt<NavigationService>().showSnackBar(
|
getIt<NavigationService>().showSnackBar(
|
||||||
|
|
Loading…
Add table
Reference in a new issue