Skip to content

Commit

Permalink
Update IF1ApiService.java
Browse files Browse the repository at this point in the history
solucionada errata en una llamada a la api
  • Loading branch information
DavidRamosArchilla committed Apr 21, 2023
1 parent 41784b9 commit d6060a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/example/f1/IF1ApiService.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface IF1ApiService {
Call<JsonObject> getResultOfRace(@Path("year") String year, @Path("round") String round);
@GET("/api/f1/{year}/{round}/qualifying.json")
Call<JsonObject> getQualiOfRace(@Path("year") String year, @Path("round") String round);
@GET("/api/f1/{year}/driverStrandings.json")
@GET("/api/f1/{year}/driverStandings.json")
Call<JsonObject> getStanding(@Path("year") String year);

@GET("/api/f1/current/next/races.json")
Expand Down

0 comments on commit d6060a1

Please sign in to comment.