don't use invitation a second time

This commit is contained in:
Eric House 2024-08-10 20:08:14 -07:00
parent 2f8164d8c7
commit 35e3487f9d

View file

@ -2289,7 +2289,8 @@ class GamesListDelegate(delegator: Delegator) :
// There's already a game? Better not have same channel as invite
// creates
for (rowid in rowids.keys) {
if (nli.forceChannel == rowids[rowid]) {
if (0 == nli.forceChannel
|| nli.forceChannel == rowids[rowid]) {
DbgUtils.printStack(TAG)
if (BuildConfig.NON_RELEASE) {
Utils.showToast(mActivity, R.string.dropped_dupe)