diff --git a/Applications.cfg b/Applications.cfg index 48124a45..6e56fafa 100644 --- a/Applications.cfg +++ b/Applications.cfg @@ -609,7 +609,7 @@ type="Application", icon="https://raw.githubusercontent.com/IgorTimofeev/OpenComputers/master/Applications/VK/Icon.pic", createShortcut=true, - version=1.38, + version=1.39, resources={ { path="/VKLogo.pic", diff --git a/Applications/VK/Main.lua b/Applications/VK/Main.lua index fd5206c3..5d147e58 100755 --- a/Applications/VK/Main.lua +++ b/Applications/VK/Main.lua @@ -837,7 +837,7 @@ local function userProfileGUI() currentProfile.audiosButton = GUI.button(x, y, avatarWidth, 1, 0xCCCCCC, 0x000000, 0x888888, 0x000000, "Аудиозаписи") y = y + 2 - drawInfo(x, y, "Подписчики: ", currentProfile.userProfile.response[1].counters.followers) + drawInfo(x, y, "Подписчики: ", tostring(currentProfile.userProfile.response[1].counters.followers)) drawInfo(x, y, "Фотографии: ", currentProfile.userProfile.response[1].counters.photos) drawInfo(x, y, "Видеозаписи: ", currentProfile.userProfile.response[1].counters.videos) drawInfo(x, y, "Аудиозаписи: ", currentProfile.userProfile.response[1].counters.audios)