Kris

Results 101 comments of Kris

Since our used library for HAFAS does not offer such a usable interface I created a quick draft in my native PHP client. Maybe we can use this one for...

I've tested the function with this code, but... it workes... ```php $ts1 = TrainStation::updateOrCreate([ 'ibnr' => 123456789 ], [ 'name' => 'testname', 'latitude' => 1.234, 'longitude' => 1.234, ]); dump($ts1);...

Maybe this occurs, when the same request is sent multiple times, so the database requests collide?

We should replace these queries by `upsert`. This will use the databases own `on duplicate entry update` function which is really fast.

We have the idea to give the users the possibility to store values in Key:Value pairs to the CheckIns in each case publicly or privately. We would wait with the...

The checkin is correctly displayed on the map. I could verify the error on the "en route" map. Belongs to status https://traewelling.de/status/168817 ![image](https://user-images.githubusercontent.com/4103693/116827408-1a07d900-ab99-11eb-90ca-39b01371cec4.png)

It's a funny bug. It does not apply to this checkin under the same conditions. ---------- ![image](https://user-images.githubusercontent.com/4103693/117129683-4b51f600-ad9f-11eb-8cdf-524a81083b46.png) ![image](https://user-images.githubusercontent.com/4103693/117129703-53aa3100-ad9f-11eb-9562-c4178194210c.png)

It should be noted that a delay occurring during the journey is not currently saved. Only the delay data at the time of check-in is stored. Therefore, such statistics would...

We also save the delay. However, we do not currently update it **during the trip** because the associated script has been disabled. see #1015