Skip to content

Commit 8d06357

Browse files
fix bug
1 parent d0ecd09 commit 8d06357

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/appConfigurationImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1152,7 +1152,7 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
11521152
if (isRestError(response)) {
11531153
header = response.response?.headers?.get(TIMESTAMP_HEADER) ?? undefined;
11541154
} else {
1155-
header = response._response.headers?.get(TIMESTAMP_HEADER) ?? undefined;
1155+
header = response._response?.headers?.get(TIMESTAMP_HEADER) ?? undefined;
11561156
}
11571157
return header ? new Date(header) : new Date();
11581158
}

0 commit comments

Comments
 (0)