-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fetch plugin data from info server #587
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved with minor nit
src/core/currency/currency-pixie.ts
Outdated
for (const pluginId of Object.keys(plugins.currency)) { | ||
const plugin = plugins.currency[pluginId] | ||
const newPayload = infoCache.corePlugins?.[pluginId] ?? {} | ||
const oldPayload = lastInfo?.corePlugins?.[pluginId] ?? {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary ?.
for lastInfo?.
src/util/match-json.ts
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oof! I didn't know match-json.ts was missing from the first review. Good catch
042ccce
to
0f85881
Compare
0f85881
to
c2301f6
Compare
CHANGELOG
Does this branch warrant an entry to the CHANGELOG?
Dependencies
noneDescription
none