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

Merge pull request #1767 from profanity-im/fix/firststart

Fix first start detection
This commit is contained in:
Michael Vetter 2022-10-12 12:16:07 +02:00 committed by GitHub
commit 6a7c6195da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -395,8 +395,8 @@ cons_show_incoming_private_message(const char* const nick, const char* const roo
static void static void
_cons_welcome_first_start(void) _cons_welcome_first_start(void)
{ {
gchar* prefs_loc = files_get_config_path(FILE_PROFANITY_IDENTIFIER); gchar* ident_loc = files_get_data_path(FILE_PROFANITY_IDENTIFIER);
if (!g_file_test(prefs_loc, G_FILE_TEST_EXISTS)) { if (!g_file_test(ident_loc, G_FILE_TEST_EXISTS)) {
ProfWin* console = wins_get_console(); ProfWin* console = wins_get_console();
win_println(console, THEME_DEFAULT, "-", "This seems to be your first time starting Profanity."); win_println(console, THEME_DEFAULT, "-", "This seems to be your first time starting Profanity.");
win_println(console, THEME_DEFAULT, "-", ""); win_println(console, THEME_DEFAULT, "-", "");
@ -410,7 +410,7 @@ _cons_welcome_first_start(void)
win_println(console, THEME_DEFAULT, "-", "/register myjid myserver.org"); win_println(console, THEME_DEFAULT, "-", "/register myjid myserver.org");
win_println(console, THEME_DEFAULT, "-", ""); win_println(console, THEME_DEFAULT, "-", "");
} }
g_free(prefs_loc); g_free(ident_loc);
} }
void void