修复wait 模式的bug

This commit is contained in:
AriaLyy
2017-07-13 21:14:18 +08:00
parent e8a9754567
commit 71a0ae4492
3 changed files with 4 additions and 11 deletions

View File

@ -32,8 +32,8 @@ public class GroupModule extends BaseModule {
List<String> getUrls() {
List<String> urls = new ArrayList<>();
//String[] str = getContext().getResources().getStringArray(R.array.download_url);
String[] str = getContext().getResources().getStringArray(R.array.group_urls);
String[] str = getContext().getResources().getStringArray(R.array.download_url);
//String[] str = getContext().getResources().getStringArray(R.array.group_urls);
Collections.addAll(urls, str);
return urls;
}