mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 08:36:26 +00:00
fix(github): Check release date for undefined value (#17106)
This commit is contained in:
parent
7492200014
commit
f3531226e9
1 changed files with 1 additions and 1 deletions
|
@ -406,7 +406,7 @@ export abstract class AbstractGithubDatasourceCache<
|
||||||
updateDuration: DurationLikeObject,
|
updateDuration: DurationLikeObject,
|
||||||
cacheItems: Record<string, StoredItem>
|
cacheItems: Record<string, StoredItem>
|
||||||
): boolean {
|
): boolean {
|
||||||
if (!changelogRelease) {
|
if (!changelogRelease?.date) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue