Skip to content

Commit 998d9f7

Browse files
author
Manny Jimenez
committed
Fixing message
1 parent c402427 commit 998d9f7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/FirebaseAppDistribution.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,8 +250,7 @@ public synchronized Task<AppDistributionRelease> checkForNewRelease() {
250250
}
251251
if (!isTesterSignedIn()) {
252252
return Tasks.forException(
253-
new FirebaseAppDistributionException(
254-
Constants.ErrorMessages.AUTHENTICATION_ERROR, AUTHENTICATION_FAILURE));
253+
new FirebaseAppDistributionException("Tester is not signed in", AUTHENTICATION_FAILURE));
255254
}
256255

257256
cachedCheckForNewReleaseTask =
@@ -301,7 +300,7 @@ private UpdateTask updateApp(boolean showDownloadInNotificationManager) {
301300
UpdateTaskImpl updateTask = new UpdateTaskImpl();
302301
updateTask.setException(
303302
new FirebaseAppDistributionException(
304-
Constants.ErrorMessages.AUTHENTICATION_ERROR, AUTHENTICATION_FAILURE));
303+
"Tester is not signed in", AUTHENTICATION_FAILURE));
305304
return updateTask;
306305
}
307306
if (cachedNewRelease == null) {

0 commit comments

Comments
 (0)