cancel notifications by rowid for non-networked games too

This commit is contained in:
Eric House 2014-08-10 20:13:13 -07:00
parent 3655d0c9ff
commit 4f514c2e16

View file

@ -1892,10 +1892,11 @@ public class BoardDelegate extends DelegateBase
DBUtils.setMsgFlags( m_rowid, GameSummary.MSG_FLAGS_NONE );
}
Utils.cancelNotification( m_activity, (int)m_rowid );
if ( null != m_xport ) {
warnIfNoTransport();
trySendChats();
Utils.cancelNotification( m_activity, (int)m_rowid );
m_xport.tickle( m_connType );
tryInvites();
}