Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
kuaifan committed Dec 8, 2024
1 parent 6a43e57 commit c473b13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/Models/WebSocketDialogMsgRead.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ public static function onlyMarkRead($list)
}
}
foreach ($dialogMsg as $item) {
$item['dialogMsg']?->generatePercentage($item['readNum']);
if ($item['dialogMsg']) {
$item['dialogMsg']->increment('read', $item['readNum']);
}
}
}
}
1 change: 1 addition & 0 deletions electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"electron-builder": "^25.1.8",
"electron-notarize": "^1.2.2",
"form-data": "^4.0.1",
"inquirer": "^8.2.0",
"ora": "^4.1.1"
},
"dependencies": {
Expand Down

0 comments on commit c473b13

Please sign in to comment.