Fix likes count of SoundCloud

This commit is contained in:
wb9688 2017-09-16 11:08:08 +02:00
parent b93910081f
commit 306e31a2a4
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ public class SoundcloudStreamExtractor extends StreamExtractor {
@Override
public long getLikeCount() {
return track.getNumber("likes_count", -1).longValue();
return track.getNumber("favoritings_count", -1).longValue();
}
@Override