mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
13 lines
594 B
TypeScript
13 lines
594 B
TypeScript
import { GuildPluginData } from "knub";
|
|
import { RECENT_SPAM_EXPIRY_TIME } from "../constants";
|
|
import { AutomodPluginType } from "../types";
|
|
import { startProfiling } from "../../../utils/easyProfiler";
|
|
|
|
export function clearOldRecentSpam(pluginData: GuildPluginData<AutomodPluginType>) {
|
|
const stopProfiling = startProfiling(pluginData.getKnubInstance().profiler, "automod:fns:clearOldRecentSpam");
|
|
const now = Date.now();
|
|
pluginData.state.recentSpam = pluginData.state.recentSpam.filter((spam) => {
|
|
return spam.timestamp + RECENT_SPAM_EXPIRY_TIME > now;
|
|
});
|
|
stopProfiling();
|
|
}
|