Skip to content
This repository was archived by the owner on Nov 28, 2024. It is now read-only.

Commit 81282fd

Browse files
committed
Info TODO setLatestEventInfo
1 parent 805d520 commit 81282fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/main/java/org/freshrss/easyrss/NotificationMgr.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ public void showNewItemsNotification(final int itemCount) {
6060
notification.defaults = Notification.FLAG_AUTO_CANCEL;
6161
final Intent intent = new Intent(context, Home.class);
6262
final PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
63-
//TODO: Fixme: `setLatestEventInfo` is removed in Android 6.0 Marshmallow, API 23
63+
//TODO: Fixme: `setLatestEventInfo` is removed in Android 6.0 Marshmallow, API 23.
64+
// See org.freshrss.easyrss.data.readersetting.SettingNotificationOn
6465
/*
6566
notification.setLatestEventInfo(context, context.getString(R.string.MsgTitleNewItems1) + ' ' + itemCount + ' '
6667
+ context.getString(R.string.MsgTitleNewItems2), context.getString(R.string.MsgClickToView),

0 commit comments

Comments
 (0)