Skip to content

Commit

Permalink
Fix issue Andersbakken#603. Make sure dir has trailing slash.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersbakken committed Feb 10, 2016
1 parent e9c215a commit 1c80873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ void Server::load()
RTags::decodePath(p);
if (p.isDir()) {
bool remove = false;
if (FILE *f = fopen((file + "project").constData(), "r")) {
if (FILE *f = fopen((file + "/project").constData(), "r")) {
Deserializer in(f);
int version;
in >> version;
Expand Down

0 comments on commit 1c80873

Please sign in to comment.