Skip to content

Commit

Permalink
Typo fixed for GitLab check
Browse files Browse the repository at this point in the history
  • Loading branch information
Ardakilic committed May 16, 2020
1 parent be89396 commit 7da9eb8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.1.0] - 2020-05-10
## [2.1.1] - 2020-05-17
### Fixed
- A typo was fixed on the check to prepend the release name for the notifications

## [2.1.0] - 2020-05-14
### Added
- You can now track GitHub issues, thanks to [kadir96/issue-tracker-rss](https://github.com/kadir96/issue-tracker-rss) 🎉
- You can now track private GitHub repositories' feeds by providing a personal access token 🎉
Expand Down
2 changes: 1 addition & 1 deletion src/utils/alertHub.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function parseFeedData(feedData) {
};

// We need to prepend release name to the title
if (isFeedFromGitHub(feedData) === true || isFeedFromGitLab(true)) {
if (isFeedFromGitHub(feedData) === true || isFeedFromGitLab(feedData) === true) {
parsedFeed.title = `${getReleaseNameFromGitHubAndGitLabFeedLink(feedData.link)} - ${feedData.title}`;
}

Expand Down

0 comments on commit 7da9eb8

Please sign in to comment.