diff options
| author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-08-12 08:26:18 +0000 | 
|---|---|---|
| committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2015-08-12 08:26:18 +0000 | 
| commit | d91ea9f58d10af27c06aaffb77c2ac7f436cf7ff (patch) | |
| tree | 3b9600485c6f56c062b06bdb292b7dd04a6b2ecb | |
| parent | c0df993c8f919be748f032ff6a695fc8ad5be056 (diff) | |
VKontakte: code cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@14923 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
| -rw-r--r-- | protocols/VKontakte/src/misc.cpp | 2 | ||||
| -rw-r--r-- | protocols/VKontakte/src/vk_feed.cpp | 4 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/protocols/VKontakte/src/misc.cpp b/protocols/VKontakte/src/misc.cpp index 281447f3f5..6bd1d36986 100644 --- a/protocols/VKontakte/src/misc.cpp +++ b/protocols/VKontakte/src/misc.cpp @@ -1074,7 +1074,7 @@ CMString CVkProto::GetAttachmentDescr(const JSONNode &jnAttachments, BBCSupport  				SetBBCString(TranslateT("Link"), iBBC, vkbbcB),
  				SetBBCString(tszTitle, iBBC, vkbbcUrl, tszUrl));
 -			if (!jnLink["photo"].isnull())		
 +			if (jnLink["photo"])		
  				res.AppendFormat(_T("\n\t%s"), GetVkPhotoItem(jnLink["photo"], iBBC));
  			if (!tszDescription.IsEmpty())
 diff --git a/protocols/VKontakte/src/vk_feed.cpp b/protocols/VKontakte/src/vk_feed.cpp index a9c0b9eea3..abbd9a72bf 100644 --- a/protocols/VKontakte/src/vk_feed.cpp +++ b/protocols/VKontakte/src/vk_feed.cpp @@ -452,7 +452,7 @@ CVKNewsItem* CVkProto::GetVkGroupInvates(const JSONNode &jnItem, OBJLIST<CVkUser  	LONG iGroupId = jnItem["id"].as_int();
  	CMString tszId;
  	tszId.AppendFormat(_T("%d,"), iGroupId);
 -	CMString tszIds = ptrT(db_get_tsa(NULL, m_szModuleName, "InviteGroupIds"));
 +	CMString tszIds(ptrT(db_get_tsa(NULL, m_szModuleName, "InviteGroupIds")));
  	if (tszIds.Find(tszId, 0) != -1)
  		return NULL;
 @@ -700,7 +700,7 @@ void CVkProto::OnReceiveUnreadNotifications(NETLIBHTTPREQUEST *reply, AsyncHttpR  		if (jnItems)
  			for (auto it = jnItems.begin(); it != jnItems.end(); ++it) {
 -				CVKNewsItem *vkNotificationItem = GetVkGroupInvates((*it), vkUsers);
 +				CVKNewsItem *vkNotificationItem = GetVkGroupInvates((*it), vkUsers);				
  				if (!vkNotificationItem)
  					continue;
  				if (vkNotification.find(vkNotificationItem) == NULL)			
  | 
