diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-12-03 12:33:48 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-12-03 12:33:48 +0000 |
commit | 49eb819ca5e9a4824b437813a11900b780bd8102 (patch) | |
tree | cb252cb4e70efcda2bb1723f6c2d99e66a20d324 /plugins/GmailNotifier/src/notify.cpp | |
parent | 7ce3ed55b501b4d54ff73c9717cf858784769e02 (diff) |
GmailNotifier: Fix gmail login url to not require login if user is already logged in (automatic login is not possible with GET request); Version bump
git-svn-id: http://svn.miranda-ng.org/main/trunk@11228 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/GmailNotifier/src/notify.cpp')
-rw-r--r-- | plugins/GmailNotifier/src/notify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/GmailNotifier/src/notify.cpp b/plugins/GmailNotifier/src/notify.cpp index fb4609f65f..4e1ee93632 100644 --- a/plugins/GmailNotifier/src/notify.cpp +++ b/plugins/GmailNotifier/src/notify.cpp @@ -184,8 +184,8 @@ void __cdecl Login_ThreadFunc(void *lpParam) else {
mir_strcat(lpPathBuffer, LINK);
mir_strcat(lpPathBuffer, mir_urlEncode(curAcc->name));
- mir_strcat(lpPathBuffer, "&Passwd=");
- mir_strcat(lpPathBuffer, mir_urlEncode(curAcc->pass));
+ //mir_strcat(lpPathBuffer, "&Passwd=");
+ //mir_strcat(lpPathBuffer, mir_urlEncode(curAcc->pass));
if (opt.AutoLogin == 1)
mir_strcat(lpPathBuffer, "&PersistentCookie=yes");
}
|