From df6ce99a03a45596b0330a3598bebf9c73aef984 Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Wed, 28 Aug 2019 12:40:27 +0300 Subject: [PATCH] Fixed "eblo = nil" error --- Applications/VK.app/Main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/VK.app/Main.lua b/Applications/VK.app/Main.lua index 2324235f..038f081c 100644 --- a/Applications/VK.app/Main.lua +++ b/Applications/VK.app/Main.lua @@ -310,7 +310,7 @@ local function getSenderName(profiles, conversations, groups, peerID) return getEblo(groups, -peerID).name else local eblo = getEblo(profiles, peerID) - return eblo.first_name .. " " .. eblo.last_name + return eblo and (eblo.first_name .. " " .. eblo.last_name) or "N/A" end end