Commit 10d727e8 by aquilescanta Committed by Oliver Woodman

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
parent 88091932
...@@ -89,7 +89,7 @@ import com.google.android.gms.cast.MediaTrack; ...@@ -89,7 +89,7 @@ import com.google.android.gms.cast.MediaTrack;
case CastStatusCodes.UNKNOWN_ERROR: case CastStatusCodes.UNKNOWN_ERROR:
return "An unknown, unexpected error has occurred."; return "An unknown, unexpected error has occurred.";
default: default:
return "Unknown: " + statusCode; return CastStatusCodes.getStatusCodeString(statusCode);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment