From 158cfaface1b2f09291e6b158e8a8748e84b0d7a Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 10 Jun 2021 16:55:17 +0200 Subject: [PATCH] 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. --- src/command/cmd_funcs.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c index 5f205191..4f68f26c 100644 --- a/src/command/cmd_funcs.c +++ b/src/command/cmd_funcs.c @@ -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);