File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
firebase-appdistribution/src/main/java/com/google/firebase/appdistribution Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -250,8 +250,7 @@ public synchronized Task<AppDistributionRelease> checkForNewRelease() {
250
250
}
251
251
if (!isTesterSignedIn ()) {
252
252
return Tasks .forException (
253
- new FirebaseAppDistributionException (
254
- Constants .ErrorMessages .AUTHENTICATION_ERROR , AUTHENTICATION_FAILURE ));
253
+ new FirebaseAppDistributionException ("Tester is not signed in" , AUTHENTICATION_FAILURE ));
255
254
}
256
255
257
256
cachedCheckForNewReleaseTask =
@@ -301,7 +300,7 @@ private UpdateTask updateApp(boolean showDownloadInNotificationManager) {
301
300
UpdateTaskImpl updateTask = new UpdateTaskImpl ();
302
301
updateTask .setException (
303
302
new FirebaseAppDistributionException (
304
- Constants . ErrorMessages . AUTHENTICATION_ERROR , AUTHENTICATION_FAILURE ));
303
+ "Tester is not signed in" , AUTHENTICATION_FAILURE ));
305
304
return updateTask ;
306
305
}
307
306
if (cachedNewRelease == null ) {
You can’t perform that action at this time.
0 commit comments