mirror of
https://github.com/samsonjs/media.git
synced 2026-04-01 10:35:48 +00:00
Use misc status code string when a Cast status code description is not available
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=192609475
This commit is contained in:
parent
8809193266
commit
10d727e810
1 changed files with 1 additions and 1 deletions
|
|
@ -89,7 +89,7 @@ import com.google.android.gms.cast.MediaTrack;
|
|||
case CastStatusCodes.UNKNOWN_ERROR:
|
||||
return "An unknown, unexpected error has occurred.";
|
||||
default:
|
||||
return "Unknown: " + statusCode;
|
||||
return CastStatusCodes.getStatusCodeString(statusCode);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue