mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-10 19:03:12 +00:00
fix: Volume resize function didn't work due to logical error
This commit is contained in:
parent
e58ae99cd7
commit
da9ac1b935
|
@ -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…
Reference in a new issue