FIX: theme-javascripts using incorrect subfolder setting

This commit is contained in:
Kane York
2020-03-05 12:34:11 -08:00
committed by Kane York
parent e2ce12d414
commit ccc9b64a99
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ class JavascriptCache < ActiveRecord::Base
before_save :update_digest
def url
"#{GlobalSetting.cdn_url}#{GlobalSetting.relative_url_root}/theme-javascripts/#{digest}.js?__ws=#{Discourse.current_hostname}"
"#{GlobalSetting.cdn_url}#{Discourse.base_uri}/theme-javascripts/#{digest}.js?__ws=#{Discourse.current_hostname}"
end
private