Fix checkDatabaseEncryptionKey usage in examples.
GitOrigin-RevId: 854debfb6f9ec64bc44a19200fdc2f72e39dc6f1
This commit is contained in:
parent
8898bfa655
commit
5f5d3355e3
@ -112,7 +112,7 @@ while True:
|
|||||||
|
|
||||||
# set an encryption key for database to let know TDLib how to open the database
|
# set an encryption key for database to let know TDLib how to open the database
|
||||||
if auth_state['@type'] == 'authorizationStateWaitEncryptionKey':
|
if auth_state['@type'] == 'authorizationStateWaitEncryptionKey':
|
||||||
td_send({'@type': 'checkDatabaseEncryptionKey', 'key': 'my_key'})
|
td_send({'@type': 'checkDatabaseEncryptionKey', 'encryption_key': ''})
|
||||||
|
|
||||||
# enter phone number to log in
|
# enter phone number to log in
|
||||||
if auth_state['@type'] == 'authorizationStateWaitPhoneNumber':
|
if auth_state['@type'] == 'authorizationStateWaitPhoneNumber':
|
||||||
|
@ -124,7 +124,7 @@ func updateAuthorizationState(authorizationState: Dictionary<String, Any>) {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
case "authorizationStateWaitEncryptionKey":
|
case "authorizationStateWaitEncryptionKey":
|
||||||
client.queryAsync(query: ["@type":"checkDatabaseEncryptionKey", "key":"cucumber"])
|
client.queryAsync(query: ["@type":"checkDatabaseEncryptionKey", "encryption_key":""])
|
||||||
|
|
||||||
case "authorizationStateWaitPhoneNumber":
|
case "authorizationStateWaitPhoneNumber":
|
||||||
print("Enter your phone number: ")
|
print("Enter your phone number: ")
|
||||||
|
Reference in New Issue
Block a user