- fix problem resulting in toTag and fromTag name not correctly set after retrieving from cache
This commit is contained in:
@@ -130,11 +130,11 @@ export class ReleaseNotesBuilder {
|
||||
|
||||
// merge fromTag info with provided info || otherwise use cached info
|
||||
const fromTag: TagInfo = orgOptions.fromTag
|
||||
if (this.fromTag != null) {
|
||||
if (this.fromTag) {
|
||||
fromTag.name = this.fromTag
|
||||
}
|
||||
const toTag: TagInfo = orgOptions.toTag
|
||||
if (this.toTag != null) {
|
||||
if (this.toTag) {
|
||||
toTag.name = this.toTag
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user