(s: str)
| 1369 | conn.close() |
| 1370 | |
| 1371 | cards: List[Dict[str, object]] = [] |
| 1372 | for r in rows: |
| 1373 | u = r["username"] |
| 1374 | if exclude and u == exclude: |
| 1375 | continue |
| 1376 | nick = u |
| 1377 | try: |
| 1378 | if r["nickname_enc"]: |
| 1379 | nick = aesgcm_decrypt_text(r["nickname_enc"]) or u |
no outgoing calls
no test coverage detected