Skip to content

Commit

Permalink
fixed size to length
Browse files Browse the repository at this point in the history
  • Loading branch information
USERSATOSHI authored Dec 17, 2023
1 parent 9ba03ab commit 58252bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handler/status.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = async (status, client) => {
let statuses = client.statuses.allValues()
if (statuses.size <= 0) {
if (statuses.length <= 0) {
return;
}

Expand Down

0 comments on commit 58252bf

Please sign in to comment.