mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
format: send array of message bodies rather than just one
This commit is contained in:
parent
11709b21bd
commit
78b3a91925
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ def notifyGCM( devids, typ, target ):
|
|||
if typ == DEVTYPE_GCM:
|
||||
if 3 <= target['clntVers']:
|
||||
connname = "%s/%d" % (target['connname'], target['hid'])
|
||||
data = { 'msg64': target['msg64'],
|
||||
data = { 'msgs64': [ target['msg64'] ],
|
||||
'connname': connname,
|
||||
}
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue