Working save capability

This commit is contained in:
Geoffroy BONNEVILLE
2019-08-19 16:39:38 +02:00
parent d87717007d
commit 3a85b60e58
4 changed files with 8 additions and 5 deletions

View File

@@ -679,7 +679,10 @@ namespace ModernKeePassLib
using(Stream s = ft.OpenWrite())
{
kdbx.Save(s, null, KdbxFormat.Default, slLogger);
}
#if ModernKeePassLib
IOConnectionInfo.Bytes = ((MemoryStream)s).ToArray();
#endif
}
ft.CommitWrite();
}