diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b0f5b5..ed1490e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - Add Slovenian translation (thanks to Grega) - Add Greek translation - Mod updates npm dependencies +- Fix Creative Commons icons - Fix positioning of the deinterlacing filter ([#465](https://github.com/datarhei/restreamer/issues/465)) ## v1.5.1 > v1.6.0 diff --git a/public/_playersite/index.html b/public/_playersite/index.html index 6a9649e..0321e47 100644 --- a/public/_playersite/index.html +++ b/public/_playersite/index.html @@ -698,10 +698,10 @@ var license = '{{channel_license}}'; var license_url = ''; var license_name = 'unknown'; - if (license === 'CC0 4.0') { + if (license === 'CC0 1.0') { license_name = 'CC0 1.0 Universal' license_url = 'https://creativecommons.org/publicdomain/zero/1.0/'; - license_image = 'https://creativecommons.org/publicdomain/zero/1.0/'; + license_image = 'https://mirrors.creativecommons.org/presskit/buttons/88x31/png/pd.png'; } else if (license === 'CC BY 4.0') { license_name = 'CC BY 4.0' license_url = 'https://creativecommons.org/licenses/by/4.0/'; @@ -725,7 +725,7 @@ } else if (license === 'CC BY-NC-ND 4.0') { license_name = 'CC BY-NC-ND 4.0'; license_url = 'https://creativecommons.org/licenses/by-nc-nd/4.0/'; - license_image = 'https://creativecommons.org/licenses/by-nc-nd/4.0/'; + license_image = 'https://mirrors.creativecommons.org/presskit/buttons/88x31/png/by-nc-nd.png'; } document.getElementById("license").setAttribute("href", license_url); document.getElementById("license_image").src = license_image;