Skip to content

Commit a4ee9ca

Browse files
author
Chris Bellew
committed
Changed error message when no on deck episodes are found.
1 parent 7b31604 commit a4ee9ca

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Voice Control For Plex/src/main/java/com/atomjack/vcfp/PlayMediaActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ public void onFailure(Throwable error) {
11091109

11101110
private void onFinishedNextEpisodeSearch(String queryTerm) {
11111111
if(videos.size() == 0) {
1112-
errors(getResources().getString(R.string.couldnt_find), queryTerm);
1112+
errors(getResources().getString(R.string.couldnt_find_next), queryTerm);
11131113
searchDialog.dismiss();
11141114
finish();
11151115
return;

Voice Control For Plex/src/main/res/values/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
<string name="couldnt_find_episode">Sorry, I couldn\'t find the episode you specified.</string>
4747
<string name="found_more_than_one_show">Sorry, I found more than one matching show. Please be more specific.</string>
4848
<string name="couldnt_find">Sorry, I couldn\'t find %s.</string>
49+
<string name="couldnt_find_next">Sorry, I couldn\'t find %s, or else no episodes for Fargo are on deck.</string>
4950
<string name="couldnt_find_season">Sorry, I couldn\'t find that season.</string>
5051
<string name="found_more_than_one_movie">I found more than one matching movie. Please be more specific.</string>
5152
<string name="now_watching_video">Now watching %1$s on %2$s.</string>

0 commit comments

Comments
 (0)