summaryrefslogtreecommitdiff
path: root/protocols/ICQ-WIM/src/groups.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ICQ-WIM/src/groups.cpp')
-rw-r--r--protocols/ICQ-WIM/src/groups.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/ICQ-WIM/src/groups.cpp b/protocols/ICQ-WIM/src/groups.cpp
index 93c7ef6e8b..29e1a97673 100644
--- a/protocols/ICQ-WIM/src/groups.cpp
+++ b/protocols/ICQ-WIM/src/groups.cpp
@@ -98,13 +98,13 @@ public:
if (!EnterString(&es))
return;
- m_proto->Push(new AsyncHttpRequest(CONN_MAIN, REQUEST_GET, ICQ_API_SERVER "/buddylist/renameGroup")
+ m_proto->Push(new AsyncHttpRequest(CONN_MAIN, REQUEST_GET, "/buddylist/renameGroup")
<< AIMSID(m_proto) << WCHAR_PARAM("oldGroup", pGroup->wszSrvName) << GROUP_PARAM("newGroup", es.ptszResult));
mir_free(es.ptszResult);
}
else if (cmd == 2) { // delete
- m_proto->Push(new AsyncHttpRequest(CONN_MAIN, REQUEST_GET, ICQ_API_SERVER "/buddylist/removeGroup")
+ m_proto->Push(new AsyncHttpRequest(CONN_MAIN, REQUEST_GET, "/buddylist/removeGroup")
<< AIMSID(m_proto) << WCHAR_PARAM("group", pGroup->wszSrvName));
}
}