From b26e32d51970b0759f13c6d28edb6eb2b7837cdc Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Thu, 7 Mar 2024 11:11:03 -0500 Subject: [PATCH] fix(bbb-html5): Use CDN for resource of layouts --- .../imports/ui/components/layout/modal/component.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-html5/imports/ui/components/layout/modal/component.jsx b/bigbluebutton-html5/imports/ui/components/layout/modal/component.jsx index 49e74f1d4a..7494f57d1b 100644 --- a/bigbluebutton-html5/imports/ui/components/layout/modal/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/layout/modal/component.jsx @@ -22,7 +22,7 @@ const LayoutModalComponent = (props) => { const [selectedLayout, setSelectedLayout] = useState(application.selectedLayout); const [updateAllUsed, setUpdateAllUsed] = useState(false); - const BASE_NAME = Meteor.settings.public.app.basename; + const BASE_NAME = Meteor.settings.public.app.cdn + Meteor.settings.public.app.basename; const LAYOUTS_PATH = `${BASE_NAME}/resources/images/layouts/`; const isKeepPushingLayoutEnabled = SettingsService.isKeepPushingLayoutEnabled();