From e138d2b67ba04b8bd1cb73aefdb445ab0b3afc1e Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Fri, 1 Dec 2017 09:54:43 -0600 Subject: [PATCH] Added needs cron check to achievements (#9624) --- website/client/components/notifications.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/client/components/notifications.vue b/website/client/components/notifications.vue index 164c5c13cd..f14bedac88 100644 --- a/website/client/components/notifications.vue +++ b/website/client/components/notifications.vue @@ -311,6 +311,8 @@ export default { }, methods: { checkUserAchievements () { + if (this.user.needsCron) return; + // List of prompts for user on changes. Sounds like we may need a refactor here, but it is clean for now if (!this.user.flags.welcomed) { this.$store.state.avatarEditorOptions.editingUser = false;