Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
boomzero committed Aug 13, 2024
2 parents 7faf00e + 45a8605 commit dc348b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default {
await XMOJDatabase.Delete("short_message", {
"send_time": {
"Operator": "<=",
"Value": new Date().getTime() - 1000 * 60 * 60 * 24 * 7
"Value": new Date().getTime() - 1000 * 60 * 60 * 24 * 5
},
"is_read": {
"Operator": "=",
Expand All @@ -50,7 +50,7 @@ export default {
await XMOJDatabase.Delete("phpsessid", {
"create_time": {
"Operator": "<=",
"Value": new Date().getTime() - 1000 * 60 * 60 * 24 * 7
"Value": new Date().getTime() - 1000 * 60 * 60 * 24 * 5
}
});
Resolve();
Expand Down

0 comments on commit dc348b0

Please sign in to comment.