You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that in the code that generates our JSON API for the jobs can end up without a "," for the last job in the feed, or has an extra "," if the last job in our for loop is expired. One way to fix this seems to be always adding the "," for each job in the for loop. It partially seems like this was the expectation as the last element in our generated JSON is an empty object, i.e. "{}".
The text was updated successfully, but these errors were encountered:
- Adds a `,` for every element in our jobs array
- Updates formatting to see the liquid logic more clearly
- Moves nowunix capture outside of the for loop for jobs
It seems that in the code that generates our JSON API for the jobs can end up without a "," for the last job in the feed, or has an extra "," if the last job in our for loop is expired. One way to fix this seems to be always adding the "," for each job in the for loop. It partially seems like this was the expectation as the last element in our generated JSON is an empty object, i.e. "{}".
The text was updated successfully, but these errors were encountered: