reordered services

This commit is contained in:
yausername 2019-03-23 19:49:37 +05:30
parent a8b5534838
commit 039a8e0b87
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ dependencies {
exclude module: 'support-annotations' exclude module: 'support-annotations'
}) })
implementation 'com.github.yausername:NewPipeExtractor:c220700' implementation 'com.github.yausername:NewPipeExtractor:f60c973'
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.23.0' testImplementation 'org.mockito:mockito-core:2.23.0'

View File

@ -27,9 +27,9 @@ public class ServiceHelper {
case 1: case 1:
return R.drawable.place_holder_cloud; return R.drawable.place_holder_cloud;
case 2: case 2:
return R.drawable.place_holder_peertube;
case 3:
return R.drawable.place_holder_gadse; return R.drawable.place_holder_gadse;
case 3:
return R.drawable.place_holder_peertube;
default: default:
return R.drawable.place_holder_circle; return R.drawable.place_holder_circle;
} }