Fixed error in sendAnimaton()

This commit is contained in:
Thiesyy 2019-02-05 22:01:00 +01:00
parent 021ac53f45
commit 6356222a6d
No known key found for this signature in database
GPG Key ID: 7A3EF0EAFF96C7F2
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ public class TUser {
if(!caption.isEmpty())
cap = "&caption=" + caption;
}
api.request("sendAnimation", "chat_id" + id + cap + "&animation=" + url);
api.request("sendAnimation", "chat_id=" + id + cap + "&animation=" + url);
} catch (IOException e) {
e.printStackTrace();
}