1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-11-21 08:45:06 -05:00

Extension: Paster Update. Fixed previous small check.

This commit is contained in:
John P (Dgby714) 2010-10-17 19:02:40 -04:00
parent c59ea5df02
commit 2b8fa3839c

View File

@ -47,7 +47,7 @@ begin
Exit;
end;
if (not ((Data[1] = '{') and (Data[Length(Data)] = '}'))) then
if (not ((Data[1] = '{') and (Data[Length(Data) - 1] = '}'))) then
begin
Data := '{"data": null, "error": "Host \"' + HOST + '\" is not a LodgeIt Server!"}';
Result := False;