Skip to content

Commit

Permalink
Fixed typo in conditional directive
Browse files Browse the repository at this point in the history
  • Loading branch information
akaSybe authored Oct 7, 2017
1 parent 9faf083 commit d8f843a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ function sendDesktopNotification(feeds) {
function createNotifications(feeds, showBlogIcons, showThumbnails) {
for (let feed of feeds) {
let notificationType = 'basic';
// @if BROWSER='crhome'
// @if BROWSER='chrome'
if (showThumbnails && feed.thumbnail) {
notificationType = 'image';
}
Expand All @@ -307,7 +307,7 @@ function sendDesktopNotification(feeds) {
title: feed.blog,
message: feed.title,
iconUrl: showBlogIcons ? feed.blogIcon : appGlobal.icons.defaultBig
// @if BROWSER='crhome'
// @if BROWSER='chrome'
,imageUrl: showThumbnails ? feed.thumbnail : null
,buttons: [
{
Expand Down

0 comments on commit d8f843a

Please sign in to comment.