feat: Jellyfin/Emby recommendations + piracy disclaimer + TOTP fix + AI chat
This commit is contained in:
@@ -71,6 +71,12 @@
|
||||
if (extra) {
|
||||
const extraDiv = document.createElement('div');
|
||||
extraDiv.style.cssText = 'align-self:flex-start; max-width:85%; margin-top:4px;';
|
||||
if (extra.disclaimer) {
|
||||
const disc = document.createElement('div');
|
||||
disc.style.cssText = 'font-size:0.7rem; color:var(--text-muted,#666); padding:6px 8px; line-height:1.4; margin-top:4px;';
|
||||
disc.textContent = '⚠️ ' + extra.disclaimer;
|
||||
extraDiv.appendChild(disc);
|
||||
}
|
||||
if (extra.recommendations) {
|
||||
extra.recommendations.forEach(rec => {
|
||||
const btn = document.createElement('button');
|
||||
|
||||
Reference in New Issue
Block a user