1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

editor: dont check whether compose file exists

No need to check anymore since we are now saving per account.
Like this we also could reopen the same file again.
This commit is contained in:
Michael Vetter 2021-06-10 16:55:17 +02:00
parent b7914c4c6a
commit 158cfaface

View File

@ -9424,12 +9424,6 @@ cmd_editor(ProfWin* window, const char* const command, gchar** args)
free(jid);
g_free(path);
// Check if file exists and create file
if (g_file_test(filename, G_FILE_TEST_EXISTS)) {
cons_show("Editor: temp file exists already");
return TRUE;
}
GError* creation_error = NULL;
GFile* file = g_file_new_for_path(filename);
GFileOutputStream* fos = g_file_create(file, G_FILE_CREATE_PRIVATE, NULL, &creation_error);