Skip to content

Commit eb9414a

Browse files
authored
Fix links in FeedbackActivity info text (#4133)
* Fix links in FeedbackActivity info text * Add TODO about adding a test for <a> tags in info text
1 parent b6429c8 commit eb9414a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

firebase-appdistribution/src/main/java/com/google/firebase/appdistribution/impl/FirebaseAppDistributionImpl.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,9 @@ private UpdateTask updateApp(boolean showDownloadInNotificationManager) {
310310

311311
@Override
312312
public void startFeedback(int infoTextResourceId) {
313-
startFeedback(firebaseApp.getApplicationContext().getString(infoTextResourceId));
313+
// TODO(lkellogg): Once we have the real FeedbackActivity view implemented, we should write a
314+
// test that checks that <a> tags are preserved
315+
startFeedback(firebaseApp.getApplicationContext().getText(infoTextResourceId));
314316
}
315317

316318
@VisibleForTesting

0 commit comments

Comments
 (0)