Skip to content

Commit

Permalink
Update login.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
mirarr-app authored Oct 11, 2024
1 parent 9cc1fe6 commit bd2e3c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class _LoginPageState extends State<LoginPage> {

if (sessionData != null) {
var accountData = await http.get(Uri.parse(
'https://tmdb.maybeparsa.top/tmdb/account?api_key=$apiKey&session_id=$sessionData'));
'https://api.themoviedb.org/3/account?api_key=$apiKey&session_id=$sessionData'));
if (accountData.statusCode == 200) {
final String accountId =
json.decode(accountData.body)['id'].toString();
Expand Down

0 comments on commit bd2e3c4

Please sign in to comment.