Fix #15
This commit is contained in:
pare
7d7ffe3370
commit
eb2df2d0a8
S'han modificat 1 arxius amb 16 adicions i 4 eliminacions
|
@ -1044,9 +1044,15 @@ def close_game(username, checkmate):
|
||||||
|
|
||||||
row = cur.fetchone()
|
row = cur.fetchone()
|
||||||
|
|
||||||
if row[0] != None:
|
if row != None:
|
||||||
|
|
||||||
white_rating = row[0]
|
if row[0] != None:
|
||||||
|
|
||||||
|
white_rating = row[0]
|
||||||
|
|
||||||
|
else:
|
||||||
|
|
||||||
|
white_rating = 1500
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
|
@ -1056,9 +1062,15 @@ def close_game(username, checkmate):
|
||||||
|
|
||||||
row = cur.fetchone()
|
row = cur.fetchone()
|
||||||
|
|
||||||
if row[0] != None:
|
if row != None:
|
||||||
|
|
||||||
black_rating = row[0]
|
if row[0] != None:
|
||||||
|
|
||||||
|
black_rating = row[0]
|
||||||
|
|
||||||
|
else:
|
||||||
|
|
||||||
|
black_rating = 1500
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
||||||
|
|
Loading…
Referencia en una nova incidència