We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0856707 commit 2b78b27Copy full SHA for 2b78b27
src/AzureAppConfigurationImpl.ts
@@ -424,7 +424,7 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
424
onlyIfChanged: !this.#isCdnUsed // if CDN is used, do not send conditional request
425
});
426
427
- if ((response?.statusCode === 200 && sentinel.etag !== response?.etag) ||
+ if ((response?.statusCode === 200 && sentinel.etag !== response?.etag) ||
428
(response === undefined && sentinel.etag !== undefined) // deleted
429
) {
430
sentinel.etag = response?.etag;// update etag of the sentinel
0 commit comments