mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-15 20:48:00 +01:00
don't use invitation a second time
This commit is contained in:
parent
2f8164d8c7
commit
35e3487f9d
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue