Преглед изворни кода

Fixes avoids sending sub/changed only when changed

main
Eric Amodio пре 2 година
родитељ
комит
d10e76bb23
1 измењених фајлова са 4 додато и 1 уклоњено
  1. +4
    -1
      src/plus/subscription/subscriptionService.ts

+ 4
- 1
src/plus/subscription/subscriptionService.ts Прегледај датотеку

@ -889,7 +889,10 @@ export class SubscriptionService implements Disposable {
: {}),
};
this.container.telemetry.sendEvent(matches ? 'subscription' : 'subscription/changed', data);
this.container.telemetry.sendEvent(
previous == null || matches ? 'subscription' : 'subscription/changed',
data,
);
});
// If the previous and new subscriptions are exactly the same, kick out

Loading…
Откажи
Сачувај