Skip to content

Commit

Permalink
Fix API issues (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
DurtyFree committed Aug 3, 2016
1 parent 52e7c7b commit eb1c6ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PoGo.PokeMobBot.Logic/Tasks/FarmPokestopsTask.cs
Expand Up @@ -441,7 +441,7 @@ private static async Task<List<FortData>> GetPokeStops(ISession session)
// Wasn't sure how to make this pretty. Edit as needed.
if (session.LogicSettings.Teleport)
{
pokeStops = mapObjects.MapCells.SelectMany(i => i.Forts)
pokeStops = mapObjects.Item1.MapCells.SelectMany(i => i.Forts)
.Where(
i =>
i.Type == FortType.Checkpoint &&
Expand All @@ -455,7 +455,7 @@ private static async Task<List<FortData>> GetPokeStops(ISession session)
}
else
{
pokeStops = mapObjects.MapCells.SelectMany(i => i.Forts)
pokeStops = mapObjects.Item1.MapCells.SelectMany(i => i.Forts)
.Where(
i =>
i.Type == FortType.Checkpoint &&
Expand Down
2 changes: 1 addition & 1 deletion Pokemon-Go-Rocket-API

7 comments on commit eb1c6ab

@Blackspeedy
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Delete the reference GPSOAuthSharp in the api project via nuget.
After that add it again via nuget.

It will build.

@achmad2688
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i don't get it 😑😑😑😑

@Godlessnesstower
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Its a piece of coding theyre trying to fix with the new API system I presume

@marksterxxx
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Anyone tried this?

@achmad2688
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not yet.. i don't know how it works..

@k3nda
Copy link

@k3nda k3nda commented on eb1c6ab Aug 4, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When this fix will be in release? Or can you tell me how can i build it by my own from source?

@Josp1337
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's no fix for the moment ! Seem that requests are encrypted ! Back engineering time !

Please sign in to comment.