No longer doing backups of backups.

This commit is contained in:
sergiotarxz 2024-03-05 05:25:35 +01:00
parent b977726c5c
commit 77945ee127
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1,3 @@
Tue 5 Mar 04:20:08 UTC 2024 - Added header bar to the load after restore window.
Tue 5 Mar 05:24:43 CET 2024 - No longer trying to do backups of backups and offering to restore backups into backups.

View File

@ -108,7 +108,7 @@ sub open_save {
my $dest_file = $dialog->save_finish($res);
return if !defined $dest_file;
$dest_file = path( $dest_file->get_path );
logger()->msg( 'Restoring backup...', $file, $dest_file );
logger()->msg( 'Restoring backup...', undef, $dest_file );
$dest_file->spew_raw( $file->slurp_raw );
$self->offer_to_edit_the_new_file($dest_file);
}