mirror of
https://github.com/profanity-im/profanity.git
synced 2025-02-02 15:08:15 -05:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
a02be1f1b6
@ -397,7 +397,11 @@ session_check_autoaway(void)
|
||||
if (saved_status) {
|
||||
free(saved_status);
|
||||
}
|
||||
saved_status = curr_status;
|
||||
if (curr_status) {
|
||||
saved_status = strdup(curr_status);
|
||||
} else {
|
||||
saved_status = NULL;
|
||||
}
|
||||
|
||||
// send away presence with last activity
|
||||
char *message = prefs_get_string(PREF_AUTOAWAY_MESSAGE);
|
||||
@ -481,6 +485,7 @@ session_check_autoaway(void)
|
||||
break;
|
||||
}
|
||||
|
||||
free(curr_status);
|
||||
prefs_free_string(mode);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user