commit d625d92a6097af85fdc188e398bf054839da8901 parent 73b20185d13d259e0b4fe032a37cb5edda256404 Author: cfillion <cfillion@users.noreply.github.com> Date: Sat, 5 Dec 2015 01:17:09 -0500 fix package synchronization, which was broken since 18f546204686f3e5c9f1af76eac6bcd802971042 (oops) Diffstat:
M | src/reapack.cpp | | | 4 | +++- |
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/reapack.cpp b/src/reapack.cpp @@ -101,7 +101,9 @@ void ReaPack::synchronize() return; } - m_transaction->fetch(remotes); + Transaction *t = createTransaction(); + if(t) + m_transaction->fetch(remotes); } void ReaPack::importRemote()