Skip to content

Commit

Permalink
Merge pull request #3931 from nextcloud/backport/3925/stable27
Browse files Browse the repository at this point in the history
[stable27] fix(branding): properly send custom logo to collabora
  • Loading branch information
juliusknorr authored Aug 20, 2024
2 parents 5f368a3 + ddbc6e5 commit 46127d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/coolParameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const generateCSSVarTokens = () => {
darkElement.remove()
const customLogo = loadState('richdocuments', 'theming-customLogo', false)
if (customLogo) {
str += ';--nc-custom-logo=' + window.OCA?.Theming?.cacheBuster ?? 0 + ';'
str += `--nc-custom-logo=${window.OCA?.Theming?.cacheBuster ?? 0};`
}

const rootEl = document.querySelector(':root')
Expand Down

0 comments on commit 46127d9

Please sign in to comment.