From aba3acf4ccde208f6698dd7261724eb5ed1bb6fb Mon Sep 17 00:00:00 2001 From: David Taylor Date: Fri, 1 Dec 2023 19:11:48 +0000 Subject: [PATCH] DEV: Correct deprecation id for discovery-controller-shims (#24671) --- .../app/instance-initializers/discovery-controller-shims.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/app/instance-initializers/discovery-controller-shims.js b/app/assets/javascripts/discourse/app/instance-initializers/discovery-controller-shims.js index 135471ef6ef..1f6396dff36 100644 --- a/app/assets/javascripts/discourse/app/instance-initializers/discovery-controller-shims.js +++ b/app/assets/javascripts/discourse/app/instance-initializers/discovery-controller-shims.js @@ -11,7 +11,7 @@ function ControllerShim(resolverName, deprecationId) { deprecated( `${resolverName} no longer exists, and this shim will eventually be removed. To fetch information about the current discovery route, use the discovery service instead.`, { - deprecationId, + id: deprecationId, } ); }