We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4505bf2 commit db20dc2Copy full SHA for db20dc2
1 file changed
src/shared/storage.ts
@@ -15,7 +15,7 @@ export function getReadTimestamps(): ReadTimestamps {
15
export function updateReadTimestamp(chatId: string): void {
16
try {
17
const timestamps = getReadTimestamps();
18
- timestamps[chatId] = Date.now() + 1000;
+ timestamps[chatId] = Date.now() + 3000;
19
localStorage.setItem(READ_TIMESTAMPS_KEY, JSON.stringify(timestamps));
20
} catch (error) {
21
console.error("Error updating read timestamp in localStorage:", error);
0 commit comments