1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Bugfix: Status with PGP shows offline in titlebar

There is code to redraw the ui, because the user may enter a passphase for the
private key. There was also a ui_init, which shouldn't be called, because it
will set the status to the initial state, which is 'offline' and 'no tls'.

Issue: #1327
This commit is contained in:
DebXWoody 2020-05-23 07:05:39 +02:00
parent 86f0e0ea70
commit d3e23ff030
No known key found for this signature in database
GPG Key ID: C2DC916F35751C24

View File

@ -147,13 +147,12 @@ sv_ev_roster_received(void)
}
free(err_str);
// Redraw the screen after entry of the PGP secret key
// Redraw the screen after entry of the PGP secret key, but not init
ProfWin *win = wins_get_current();
char *theme = prefs_get_string(PREF_THEME);
win_clear(win);
theme_init(theme);
prefs_free_string(theme);
ui_init();
ui_resize();
ui_show_roster();
}