improve lookup feed table sql

This commit is contained in:
pa
2026-01-25 00:39:30 +09:00
parent e35e190ba1
commit d0f6ab6574
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -2275,7 +2275,7 @@ export const useNotificationStore = defineStore('Notification', () => {
}
function queueFeedNoty(feed) {
const noty = structuredClone(feed);
const noty = { ...feed };
if (noty.type === 'Avatar') {
return;
}
+1 -1
View File
@@ -240,7 +240,7 @@ export const useSharedFeedStore = defineStore('SharedFeed', () => {
}
async function addEntry(data) {
const ctx = structuredClone(data);
const ctx = { ...data };
const userId = ctx.userId || ctx.senderUserId;
const wristFilter = notificationsSettingsStore.sharedFeedFilters.wrist;
if (userId === userStore.currentUser.id) {