Fix char A/N in groups

This commit is contained in:
Cohee
2023-06-18 18:33:57 +03:00
parent 040c4a8894
commit 976248b665
3 changed files with 19 additions and 6 deletions

View File

@@ -811,6 +811,7 @@ async function printCharacters() {
favsToHotswap();
await delay(300);
updateVisibleDivs('#rm_print_characters_block', true);
displayOverrideWarnings();
}
@@ -5765,7 +5766,9 @@ function updateVisibleDivs(containerSelector, resizecontainer) {
}
function displayOverrideWarnings() {
if (!this_chid) {
if (!this_chid || !selected_group) {
$('.prompt_overridden').hide();
$('.jailbreak_overridden').hide();
return;
}