wait for mount/unmount to complete
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2025-03-18 07:47:40 -05:00
parent d57fa022d8
commit 9fcc50fcc3

View File

@ -126,7 +126,7 @@ class Mount with ChangeNotifier {
}
Future<void> refresh({bool force = false}) async {
if (_isRefreshing || (!force && _isMounting)) {
if (!force && (_isMounting || _isRefreshing)) {
return;
}