don't assume the url is a file path!

This commit is contained in:
Corey Johnson 2011-11-15 18:19:07 -08:00 committed by Chris Wanstrath
parent 59667baad7
commit 307610d9d5

View File

@ -22,7 +22,7 @@
- (id)initWithURL:(NSString *)_url {
self = [super initWithWindowNibName:@"AtomWindow"];
url = [[_url stringByStandardizingPath] retain];
url = [_url retain];
[self.window makeKeyWindow];