shayne / stock-ticker-stream-deck-plugin

A stock ticker plugin for Stream Deck
MIT License
25 stars 12 forks source link

Stock price not updating #18

Closed kintonc closed 1 year ago

kintonc commented 1 year ago

As of yesterday morning, the plugin no longer shows stock price.

This is what I see:

image

I've tried changing tickers (SPY, DIA, QQQ), deleting and readding the icons, and uninstalling / reinstalling the plugin, but still the same result.

Grandbassist1209 commented 1 year ago

Also seeing the same problem with no found workaround at the moment.

zariok commented 1 year ago

The problem is in cmd/stock_ticker_stream_deck_plugin/api.go . There are several log.Fatal calls on err which will cause the cmd to exit if the network request fails or the query1.finance.yahoo.com domain is unavailable. You will have to remove your entry via "delete" and re-add it OR full exit streamdeck and reload when network is available. This could be fixed up with some better handling and a logarithmic back-off of retries (e.g. 5s, 10s, 30s.. etc)

shayne commented 1 year ago

Fixed in v1.1.3