mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
fix(mobile): Fix a typo in SyncStreamService Logging (#20283)
Fix typo in logging
This commit is contained in:
parent
cb344cb014
commit
f2141de5bb
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class SyncStreamService {
|
||||||
bool get isCancelled => _cancelChecker?.call() ?? false;
|
bool get isCancelled => _cancelChecker?.call() ?? false;
|
||||||
|
|
||||||
Future<void> sync() {
|
Future<void> sync() {
|
||||||
_logger.info("Remote sync request for userr");
|
_logger.info("Remote sync request for user");
|
||||||
DLog.log("Remote sync request for user");
|
DLog.log("Remote sync request for user");
|
||||||
// Start the sync stream and handle events
|
// Start the sync stream and handle events
|
||||||
return _syncApiRepository.streamChanges(_handleEvents);
|
return _syncApiRepository.streamChanges(_handleEvents);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue