Skip to content

Commit 8cba017

Browse files
committed
Fix to use Io.Copy method
1 parent fc0e9f9 commit 8cba017

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Applications/Pages/Main/Sources/Presenters/MainFacade.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void Merge(string dest) => Lock(() =>
174174
try
175175
{
176176
using (var w = Make(new DocumentWriter(op))) w.Save(tmp);
177-
Io.Move(tmp, dest, true);
177+
Io.Copy(tmp, dest, true);
178178
Reset();
179179
}
180180
finally { Logger.Try(() => Io.Delete(tmp)); }

0 commit comments

Comments
 (0)