diff --git a/README.md b/README.md index daa6a4248..dc889fd71 100644 --- a/README.md +++ b/README.md @@ -248,7 +248,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * BTNext (BTNT) * BTSCHOOL * Back-ups - * BaconBits (bB) + * bB * BakaBT * BeiTai * BeyondHD (BHD) diff --git a/src/Jackett.Common/Indexers/BB.cs b/src/Jackett.Common/Indexers/BB.cs index 8781bc70f..4ef104736 100644 --- a/src/Jackett.Common/Indexers/BB.cs +++ b/src/Jackett.Common/Indexers/BB.cs @@ -36,7 +36,7 @@ namespace Jackett.Common.Indexers public BB(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) : base(id: "bb", name: "bB", - description: "BaconBits (bB) is a Private Torrent Tracker for 0DAY / GENERAL", + description: "bB is a Private Torrent Tracker for 0DAY / GENERAL", link: StringUtil.FromBase64("aHR0cHM6Ly9iYWNvbmJpdHMub3JnLw=="), caps: new TorznabCapabilities(), configService: configService, @@ -157,11 +157,11 @@ namespace Jackett.Common.Indexers release.Category = MapTrackerCatToNewznab(catStr); var qDetails = row.Children[1].QuerySelector("a[title='View Torrent']"); - release.Comments = new Uri(BaseUrl + "/" + qDetails.GetAttribute("href")); + release.Comments = new Uri(BaseUri + qDetails.GetAttribute("href")); release.Guid = release.Comments; var qDownload = row.Children[1].QuerySelector("a[title='Download']"); - release.Link = new Uri(BaseUrl + "/" + qDownload.GetAttribute("href")); + release.Link = new Uri(BaseUri + qDownload.GetAttribute("href")); var dateStr = row.Children[3].TextContent.Trim().Replace(" and", ""); release.PublishDate = DateTimeUtil.FromTimeAgo(dateStr);