mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +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,
|
||||
cacheItems: Record<string, StoredItem>
|
||||
): boolean {
|
||||
if (!changelogRelease) {
|
||||
if (!changelogRelease?.date) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue