Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cordova-plugin-local-notifications
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
cordova-plugin-local-notifications
Commits
a1f7d250
Commit
a1f7d250
authored
Dec 31, 2015
by
Sebastián Katzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #569 getScheduled returns two items
parent
6d85bd69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
CHANGELOG.md
CHANGELOG.md
+1
-0
LocalNotificationCore.js
src/windows/LocalNotificationCore.js
+5
-2
No files found.
CHANGELOG.md
View file @
a1f7d250
...
@@ -14,6 +14,7 @@ Please also read the [Upgrade Guide](https://github.com/katzer/cordova-plugin-lo
...
@@ -14,6 +14,7 @@ Please also read the [Upgrade Guide](https://github.com/katzer/cordova-plugin-lo
-
Fixed #682 crash while resuming app from notification (Android 6)
-
Fixed #682 crash while resuming app from notification (Android 6)
-
Fixed #612 cannot update icon or sound (Android)
-
Fixed #612 cannot update icon or sound (Android)
-
Fixed crashing
`get(ID)`
if notification doesn't exist
-
Fixed crashing
`get(ID)`
if notification doesn't exist
-
Fixed #569
`getScheduled`
returns two items per notification
#### Version 0.8.2 (08.11.2015)
#### Version 0.8.2 (08.11.2015)
-
Submitted to npm
-
Submitted to npm
...
...
src/windows/LocalNotificationCore.js
View file @
a1f7d250
...
@@ -324,9 +324,12 @@ proxy.core = {
...
@@ -324,9 +324,12 @@ proxy.core = {
ids
=
[];
ids
=
[];
for
(
var
i
=
0
;
i
<
toasts
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
toasts
.
length
;
i
++
)
{
var
toast
=
toasts
[
i
];
var
toast
=
toasts
[
i
],
toastId
=
this
.
getToastId
(
toast
);
ids
.
push
(
this
.
getToastId
(
toast
));
if
(
ids
.
indexOf
(
toastId
)
==
-
1
)
{
ids
.
push
(
toastId
);
}
}
}
return
ids
;
return
ids
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment