[mob][photos] Rename

This commit is contained in:
laurenspriem
2025-01-16 15:24:52 +05:30
parent 5611f2f9d9
commit 470d14d81f

View File

@@ -43,10 +43,10 @@ class MLService {
bool get isInitialized => _isInitialized;
bool get showClusteringIsHappening => _showClusteringIsHappening;
bool get showClusteringIsHappening => _clusteringIsHappening;
bool debugIndexingDisabled = false;
bool _showClusteringIsHappening = false;
bool _clusteringIsHappening = false;
bool _mlControllerStatus = false;
bool _isIndexingOrClusteringRunning = false;
bool _isRunningML = false;
@@ -261,7 +261,7 @@ class MLService {
}
try {
_showClusteringIsHappening = true;
_clusteringIsHappening = true;
// Get a sense of the total number of faces in the database
final int totalFaces = await MLDataDB.instance.getTotalFaceCount();
@@ -413,7 +413,7 @@ class MLService {
} catch (e, s) {
_logger.severe("`clusterAllImages` failed", e, s);
} finally {
_showClusteringIsHappening = false;
_clusteringIsHappening = false;
_isIndexingOrClusteringRunning = false;
_cancelPauseIndexingAndClustering();
}