Hide latest ad from character preview if it was posted more than 45 minutes ago

This commit is contained in:
Mr. Stallion 2021-02-03 19:57:58 -06:00
parent c0bf309f6d
commit ae08ed67f6
1 changed files with 5 additions and 1 deletions

View File

@ -196,7 +196,11 @@ export default class CharacterPreview extends Vue {
updateAdStatus(): void {
const cache = core.cache.adCache.get(this.characterName!);
if ((!cache) || (cache.posts.length === 0)) {
if (
(!cache)
|| (cache.posts.length === 0)
|| (Date.now() - cache.posts[cache.posts.length - 1].datePosted.getTime() > (45 * 60 * 1000))
) {
this.latestAd = undefined;
return;
}