use same ID for all upgrade notifications

Don't want them stacking up
This commit is contained in:
Eric House 2020-09-14 21:37:15 -07:00
parent 38ae14296c
commit 584c9e2332

View file

@ -341,7 +341,7 @@ public class UpdateCheckReceiver extends BroadcastReceiver {
.getString( m_context, R.string.new_app_avail );
}
Utils.postNotification( m_context, intent, title,
body, url.hashCode() );
body, title.hashCode() );
gotOne = true;
}
}