mirror of
https://github.com/mpv-player/mpv
synced 2024-12-20 05:42:19 +00:00
cocoa: fix dropping of certain urls on the window
the 'path' of an youtube url (youtube.com/watch?v=x) would just be '/watch'. obviously this fails to load.
This commit is contained in:
parent
3bb06155c9
commit
a6035439a9
@ -362,7 +362,12 @@
|
||||
options:@{}];
|
||||
NSMutableArray* ar = [[[NSMutableArray alloc] init] autorelease];
|
||||
for (NSURL* url in pbitems) {
|
||||
[ar addObject:[url path]];
|
||||
if (url.fileURL) {
|
||||
[ar addObject:[url path]];
|
||||
}
|
||||
else {
|
||||
[ar addObject:[url absoluteString]];
|
||||
}
|
||||
}
|
||||
[self.adapter handleFilesArray:ar];
|
||||
return YES;
|
||||
|
Loading…
Reference in New Issue
Block a user