Skip to content

Commit

Permalink
return a string, not a url
Browse files Browse the repository at this point in the history
  • Loading branch information
martinh committed Jul 8, 2012
1 parent 6b644e1 commit 1506b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/SFTPConnectionPool.m
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ - (NSString *)stringByAbbreviatingWithTildeInPath:(NSURL *)aURL
SFTPConnection *conn = [_connections objectForKey:key];
if (conn && [conn connected])
return [conn stringByAbbreviatingWithTildeInPath:aURL];
return aURL;
return [aURL absoluteString];
}

- (id<ViDeferred>)connectionWithURL:(NSURL *)url
Expand Down

0 comments on commit 1506b35

Please sign in to comment.