FIX: Ensure theme_uploads_local only has one / at beginning (#17719)

Followup to c7dfb1c549
This commit is contained in:
David Taylor
2022-07-28 22:20:52 +01:00
committed by GitHub
parent c7dfb1c549
commit 9d753cb89e
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class JavascriptCache < ActiveRecord::Base
end
def local_url
"#{Discourse.base_path}/#{path}"
"#{Discourse.base_path}#{path}"
end
private