Skip to content
Snippets Groups Projects
Unverified Commit f3531226 authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

fix(github): Check release date for undefined value (#17106)

parent 74922000
No related branches found
No related tags found
No related merge requests found
......@@ -406,7 +406,7 @@ export abstract class AbstractGithubDatasourceCache<
updateDuration: DurationLikeObject,
cacheItems: Record<string, StoredItem>
): boolean {
if (!changelogRelease) {
if (!changelogRelease?.date) {
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment