reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit f7139a306ede8f1aa95db8860f1480e992649755
parent d625d92a6097af85fdc188e398bf054839da8901
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Sat,  5 Dec 2015 01:35:36 -0500

fix how .ReapackRemote files are read

Diffstat:
Msrc/reapack.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/reapack.cpp b/src/reapack.cpp @@ -121,10 +121,10 @@ void ReaPack::importRemote() } string name; - file >> name; + getline(file, name); string url; - file >> url; + getline(file, url); file.close();