From 3698cbaec952d98cb147d5ef915b92ec9d1dc41c Mon Sep 17 00:00:00 2001 From: igor Date: Fri, 24 Nov 2017 21:48:05 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B2=D0=BA=20=D0=BF=D0=B8=D0=B4=D1=80=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Applications.cfg | 2 +- Applications/VK/Main.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)