mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
chore(mobile): Adds dart format to static analysis (#7193)
Adds dart format to static analysis
This commit is contained in:
parent
9e7cb52413
commit
dd53795953
2 changed files with 7 additions and 2 deletions
|
|
@ -110,7 +110,8 @@ class WebsocketNotifier extends StateNotifier<WebsocketState> {
|
|||
final endpoint = Uri.parse(Store.get(StoreKey.serverEndpoint));
|
||||
final headers = {"x-immich-user-token": accessToken};
|
||||
if (endpoint.userInfo.isNotEmpty) {
|
||||
headers["Authorization"] = "Basic ${base64.encode(utf8.encode(endpoint.userInfo))}";
|
||||
headers["Authorization"] =
|
||||
"Basic ${base64.encode(utf8.encode(endpoint.userInfo))}";
|
||||
}
|
||||
|
||||
debugPrint("Attempting to connect to websocket");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue