Fix word splitting

This commit is contained in:
Natsumi
2025-08-09 12:28:44 +12:00
parent 5049e0ac04
commit fd87bb4509
4 changed files with 3 additions and 3 deletions

View File

@@ -520,7 +520,6 @@ export const useUserStore = defineStore('User', () => {
$customTag: '',
$customTagColour: '',
$friendNumber: 0,
$lastFetch: Date.now(),
$platform: '',
//
...json
@@ -552,7 +551,6 @@ export const useUserStore = defineStore('User', () => {
}
state.cachedUsers.set(ref.id, ref);
} else {
json.$lastFetch = Date.now(); // todo: make this not suck
if (json.state !== 'online') {
// offline event before GPS to offline location
friendStore.updateFriend(ref.id, json.state);