You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Security:
- Fix PIVX wallet panic on malformed txid from explorer API
- Add path traversal prevention in Mini App ZIP extraction
- Zero-window Tauri API restriction for Mini Apps (property interception)
- Add android:allowBackup="false" to prevent sensitive data backup
- Remove HTTP scheme from Android deep links (HTTPS only)
- Add XSS prevention for image src injection in file previews
Bug fixes:
- Fix "Unknown" reply author in group chats (set npub on outgoing messages)
- Fix duplicate system events for Leave Group messages
- Prevent group creator from leaving unless they're the only member
UI:
- Add x-user icon and use it for Leave Group button
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
// Creators cannot leave unless they are the only member
9514
+
if(isCreator&&memberCount>1){
9515
+
awaitpopupConfirm(
9516
+
'Cannot Leave Group',
9517
+
'You are the creator of this group. You must remove all other members before you can leave.<br><br>Please kick all members first, then you can leave the group.',
9518
+
true,// Notice only, no cancel button
9519
+
'',// No input
9520
+
'vector_warning.svg'
9521
+
);
9522
+
return;
9523
+
}
9524
+
9525
+
// Confirm before leaving using popupConfirm
9512
9526
constconfirmed=awaitpopupConfirm(
9513
9527
'Leave Group',
9514
9528
`Are you sure you want to leave "<b>${groupName}</b>"?<br><br>You will need to be re-invited to rejoin.`,
0 commit comments