Skip to content

Commit

Permalink
remove 15 days hard coded filter
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanfbrito committed Oct 31, 2023
1 parent 2ba809c commit 99314a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/servers/supportedVersions/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ export const getExpirationMessageTranslated = (
...message?.params,
};

if (!message || !i18n || params.remaining_days > 15) {
if (!message || !i18n) {
// || params.remaining_days > 15)
return null;
}

Expand Down

0 comments on commit 99314a5

Please sign in to comment.