Remove legacy lib_path parameter
This commit is contained in:
parent
7261b60916
commit
a2781be79d
|
@ -60,7 +60,6 @@ It is good idea to obtain Telegram API ID from [**https://my.telegram.org**](htt
|
|||
```
|
||||
:telegram:
|
||||
:tdlib:
|
||||
:lib_path: 'lib/'
|
||||
:client:
|
||||
:api_id: '845316' # telegram API ID (my.telegram.org) #
|
||||
:api_hash: '27fe5224bc822bf3a45e015b4f9dfdb7' # telegram API HASH (my.telegram.org) #
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
:upload: 'https:///xmppfiles.localhost' # xmpp http upload address
|
||||
:tdlib_verbosity: 1
|
||||
:tdlib:
|
||||
:lib_path: 'lib/'
|
||||
:client:
|
||||
:api_id: '17349'
|
||||
:api_hash: '344583e45741c457fe1862106095a5eb'
|
||||
|
|
|
@ -42,7 +42,6 @@ type TelegramContentConfig struct {
|
|||
|
||||
// TelegramTdlibConfig is for :tdlib: subtree
|
||||
type TelegramTdlibConfig struct {
|
||||
Path string `yaml:":lib_path"`
|
||||
Client TelegramTdlibClientConfig `yaml:":client"`
|
||||
}
|
||||
|
||||
|
|
|
@ -28,12 +28,9 @@
|
|||
"type": "integer"
|
||||
},
|
||||
":tdlib": {
|
||||
"required": [":lib_path", ":client"],
|
||||
"required": [":client"],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
":lib_path": {
|
||||
"$ref": "#/definitions/non-empty-string"
|
||||
},
|
||||
":client": {
|
||||
"type": "object",
|
||||
"required": [":api_id", ":api_hash"],
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
:upload: 'https:///xmppfiles.localhost' # xmpp http upload address
|
||||
:tdlib_verbosity: 1
|
||||
:tdlib:
|
||||
:lib_path: 'lib/'
|
||||
:client:
|
||||
:api_id: '17349'
|
||||
:api_hash: '344583e45741c457fe1862106095a5eb'
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
:upload: '' # xmpp http upload address
|
||||
:tdlib_verbosity: 1
|
||||
:tdlib:
|
||||
:lib_path: 'lib/'
|
||||
:client:
|
||||
:api_id: '17349'
|
||||
:api_hash: '344583e45741c457fe1862106095a5eb'
|
||||
|
|
Loading…
Reference in a new issue