diff --git a/README.md b/README.md
index f0885ceb..1e88f175 100644
--- a/README.md
+++ b/README.md
@@ -222,6 +222,7 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro
* Get all supergroups/channels where you're admin: channels.getAdminedPublicChannels
* Get and increase message views: messages.getMessagesViews
* Get app config: help.getAppConfig
+ * Get autodownload settings: account.getAutoDownloadSettings
* Get available languages: langpack.getLanguages
* Get blocked users: contacts.getBlocked
* Get call configuration: phone.getCallConfig
@@ -233,6 +234,9 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro
* Get dialog info of peers: messages.getPeerDialogs
* Get dialogs marked as unread manually: messages.getDialogUnreadMarks
* Get document by SHA256 hash: messages.getDocumentByHash
+ * Get emoji URL: messages.getEmojiURL
+ * Get emoji keyword difference: messages.getEmojiKeywordsDifference
+ * Get emoji keywords: messages.getEmojiKeywords
* Get favorite stickers: messages.getFavedStickers
* Get featured stickers: messages.getFeaturedStickers
* Get high scores of a game sent in an inline message: messages.getInlineGameHighScores
@@ -339,6 +343,7 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro
* Returns a list of available wallpapers.: account.getWallPapers
* Save a GIF: messages.saveGif
* Save a message draft: messages.saveDraft
+ * Save autodownload settings: account.saveAutoDownloadSettings
* Save call debugging info: phone.saveCallDebug
* Save telegram passport secure value: account.saveSecureValue
* Save wallpaper: account.saveWallPaper
@@ -377,7 +382,7 @@ Tip: if you receive an error (or nothing), [send us](https://t.me/pwrtelegramgro
* Toggle top peers: contacts.toggleTopPeers
* Unblock a user: contacts.unblock
* Update online status: account.updateStatus
- * Update pinned message (private chat only): messages.updatePinnedMessage
+ * Update pinned message: messages.updatePinnedMessage
* Update profile info: account.updateProfile
* Update the username of a supergroup/channel: channels.updateUsername
* Update this user's username: account.updateUsername
diff --git a/docs b/docs
index 070bc5ab..24c6ea38 160000
--- a/docs
+++ b/docs
@@ -1 +1 @@
-Subproject commit 070bc5ab668b357711ea8e7e1ec3c944ce4d139b
+Subproject commit 24c6ea38c0735a265d47c04eb0d1b8d20c1b585f
diff --git a/src/danog/MadelineProto/Lang.php b/src/danog/MadelineProto/Lang.php
index d8205621..d4ed3df7 100644
--- a/src/danog/MadelineProto/Lang.php
+++ b/src/danog/MadelineProto/Lang.php
@@ -4478,7 +4478,7 @@ class Lang
'method_contacts.deleteByPhones_param_phones_type_Vector t' => 'Phones',
'method_messages.sendInlineBotResult_param_hide_via_type_true' => 'Hide "via @bot"',
'method_messages.clearAllDrafts' => 'Clear all drafts',
- 'method_messages.updatePinnedMessage' => 'Update pinned message (private chat only)',
+ 'method_messages.updatePinnedMessage' => 'Update pinned message',
'method_messages.updatePinnedMessage_param_silent_type_true' => 'Silent?',
'method_messages.updatePinnedMessage_param_peer_type_InputPeer' => 'Peer',
'method_messages.updatePinnedMessage_param_id_type_int' => 'Message ID',
@@ -9225,7 +9225,7 @@ class Lang
'method_contacts.deleteByPhones_param_phones_type_Vector t' => 'Phones',
'method_messages.sendInlineBotResult_param_hide_via_type_true' => 'Hide "via @bot"',
'method_messages.clearAllDrafts' => 'Clear all drafts',
- 'method_messages.updatePinnedMessage' => 'Update pinned message (private chat only)',
+ 'method_messages.updatePinnedMessage' => 'Update pinned message',
'method_messages.updatePinnedMessage_param_silent_type_true' => 'Silent?',
'method_messages.updatePinnedMessage_param_peer_type_InputPeer' => 'Peer',
'method_messages.updatePinnedMessage_param_id_type_int' => 'Message ID',