update to latest newpipeextractor
This commit is contained in:
parent
26ed6299e3
commit
f2358692af
2 changed files with 2 additions and 5 deletions
|
@ -52,7 +52,7 @@ dependencies {
|
||||||
exclude module: 'support-annotations'
|
exclude module: 'support-annotations'
|
||||||
}
|
}
|
||||||
|
|
||||||
implementation 'com.github.TeamNewPipe:NewPipeExtractor:b9d0941411'
|
implementation 'com.github.TeamNewPipe:NewPipeExtractor:a5ba4828'
|
||||||
|
|
||||||
testImplementation 'junit:junit:4.12'
|
testImplementation 'junit:junit:4.12'
|
||||||
testImplementation 'org.mockito:mockito-core:1.10.19'
|
testImplementation 'org.mockito:mockito-core:1.10.19'
|
||||||
|
|
|
@ -116,10 +116,7 @@ public class SubscriptionEntity {
|
||||||
|
|
||||||
@Ignore
|
@Ignore
|
||||||
public ChannelInfoItem toChannelInfoItem() {
|
public ChannelInfoItem toChannelInfoItem() {
|
||||||
ChannelInfoItem item = new ChannelInfoItem();
|
ChannelInfoItem item = new ChannelInfoItem(getServiceId(), getUrl(), getName());
|
||||||
item.url = getUrl();
|
|
||||||
item.service_id = getServiceId();
|
|
||||||
item.name = getName();
|
|
||||||
item.thumbnail_url = getAvatarUrl();
|
item.thumbnail_url = getAvatarUrl();
|
||||||
item.subscriber_count = getSubscriberCount();
|
item.subscriber_count = getSubscriberCount();
|
||||||
item.description = getDescription();
|
item.description = getDescription();
|
||||||
|
|
Loading…
Reference in a new issue