vitoziv / VIMediaCache

Cache media file while play media using AVPlayer
MIT License
968 stars 187 forks source link

url 中包含中文时会crash #51

Closed DamonChen117 closed 6 years ago

DamonChen117 commented 6 years ago

VIResourceLoaderManager

originURL = [NSURL URLWithString:queryItem.value];

改成

originURL = [NSURL URLWithString:[queryItem.value stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];

vitoziv commented 6 years ago

最新版本的代码应该没有这个问题了,最新代码目前还没有打到新版本的tag里,需要在 podfile 指定 commit 的方式导入

cc: https://github.com/vitoziv/VIMediaCache/blob/master/VIMediaCache/ResourceLoader/VIResourceLoaderManager.m#L51