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

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) {