Summary
adm/style/acp_recenttopics.html loads the "Become a Patron" button image directly from Patreon's CDN:
<img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" ...>
Every time an admin opens this ACP page, their browser makes a direct request to c5.patreon.com. Bundling the button image with the extension's own assets avoids that external request (privacy/reliability: no third-party call on every ACP page view, and the button keeps working if Patreon changes/removes that asset URL).
Location
avathar/recenttopics/adm/style/acp_recenttopics.html, line ~174
Fix
Bundle a local copy of the Patreon button image under the extension's own asset path and reference it there instead of the external c5.patreon.com URL.
Summary
adm/style/acp_recenttopics.htmlloads the "Become a Patron" button image directly from Patreon's CDN:Every time an admin opens this ACP page, their browser makes a direct request to
c5.patreon.com. Bundling the button image with the extension's own assets avoids that external request (privacy/reliability: no third-party call on every ACP page view, and the button keeps working if Patreon changes/removes that asset URL).Location
avathar/recenttopics/adm/style/acp_recenttopics.html, line ~174Fix
Bundle a local copy of the Patreon button image under the extension's own asset path and reference it there instead of the external
c5.patreon.comURL.