From b2c084a18acfde304dc805db51169f8be1f920f3 Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Tue, 2 Apr 2019 12:35:10 -0500 Subject: [PATCH] Fix #5314, always show the server removal notice --- server/src/promotion-strategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/promotion-strategy.js b/server/src/promotion-strategy.js index ab848dacaa..7d5e379368 100644 --- a/server/src/promotion-strategy.js +++ b/server/src/promotion-strategy.js @@ -77,7 +77,7 @@ class PromotionStrategy { } shouldShowDeprecation() { - return false; + return true; } }