Skip to content

Commit

Permalink
fix register share endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
LegendAF committed Sep 11, 2024
1 parent 51eec6d commit 9f29021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/tenor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ class Tenor {
var result = await serverRequest(path, networkTimeout);
if (result != null &&
result.isNotEmpty &&
result[0]['status']?.toString().toLowerCase() == 'ok') {
result['status']?.toString().toLowerCase() == 'ok') {
return true;
}
return false;
Expand Down

0 comments on commit 9f29021

Please sign in to comment.