libstore: correctly move remote connection exception info

Change-Id: I264dab54502c178a362593b3c757110588e0548a
This commit is contained in:
eldritch horrors
2025-03-11 16:15:20 +00:00
parent ba9ab0c855
commit a60a362d8a
+4 -1
View File
@@ -109,7 +109,10 @@ struct RemoteStore::ConnectionHandle
ConnectionHandle(ConnectionHandle && h)
: handle(std::move(h.handle))
{ }
, daemonException(h.daemonException)
{
h.daemonException = false;
}
~ConnectionHandle();