diff options
author | Awkward <Awkward@1316c22d-e87f-b044-9b9b-93d7a3e3ba9c> | 2014-05-01 17:03:40 +0000 |
---|---|---|
committer | Awkward <Awkward@1316c22d-e87f-b044-9b9b-93d7a3e3ba9c> | 2014-05-01 17:03:40 +0000 |
commit | cb75790202c93e71b82df84c4cec6d2f1a82d61a (patch) | |
tree | 619305fc466c4d6673f460d7c47b46a03abf887a /plugins/Watrack/lastfm | |
parent | 49e52b9a839f0c00b1a3fd6e2ed4fb64825f9fb4 (diff) |
LastFM error message fix
New file recognize fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@9101 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack/lastfm')
-rw-r--r-- | plugins/Watrack/lastfm/i_last_api.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Watrack/lastfm/i_last_api.inc b/plugins/Watrack/lastfm/i_last_api.inc index f09b93441b..b43ba0703c 100644 --- a/plugins/Watrack/lastfm/i_last_api.inc +++ b/plugins/Watrack/lastfm/i_last_api.inc @@ -80,7 +80,7 @@ begin else if StrCmp(res,'BADAUTH' )=0 then StrCopy(tmp,Translate('Bad Auth. Check login and password'))
else if StrCmp(res,'BADTIME' )=0 then StrCopy(tmp,Translate('Bad TimeStamp'))
else if StrCmp(res,'FAILED',6)=0 then StrCopy(tmp,res+7);
- CallService(MS_POPUP_SHOWMESSAGEW,wparam(@request),SM_ERROR);
+ CallService(MS_POPUP_SHOWMESSAGE,wparam(@request),SM_ERROR);
end;
mFreeMem(res);
end;
|