mirror of
https://github.com/JonnyBro/beatrun.git
synced 2024-12-27 20:43:02 +05:00
update anims 🤯
This commit is contained in:
parent
9fdfbecc7a
commit
8403f40b55
11 changed files with 7 additions and 7 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -62,8 +62,8 @@ function GetCourse(sharecode)
|
|||
|
||||
return false
|
||||
end
|
||||
end, function(message)
|
||||
print("An error occurred: " .. message)
|
||||
end, function(e)
|
||||
print("An error occurred: " .. e)
|
||||
|
||||
return false
|
||||
end, {
|
||||
|
@ -96,8 +96,8 @@ function UploadCourse()
|
|||
|
||||
return false
|
||||
end
|
||||
end, function(message)
|
||||
print("Unexpected error: " .. message)
|
||||
end, function(e)
|
||||
print("Unexpected error: " .. e)
|
||||
end, {
|
||||
authorization = apikey:GetString(),
|
||||
course = util.Base64Encode(filedata, true),
|
||||
|
@ -128,12 +128,12 @@ function UpdateCourse(course_code)
|
|||
|
||||
return true
|
||||
else
|
||||
print("An error occurred: " .. message)
|
||||
print("An error occurred: " .. response.message)
|
||||
|
||||
return false
|
||||
end
|
||||
end, function(message)
|
||||
print("Unexpected error: " .. message)
|
||||
end, function(e)
|
||||
print("Unexpected error: " .. e)
|
||||
end, {
|
||||
authorization = apikey:GetString(),
|
||||
code = course_code,
|
||||
|
|
Loading…
Reference in a new issue