Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
notifications-bot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
archives
notifications-bot
Merge requests
!23
Release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Release
release
into
master
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
Release
Jake Taylor
requested to merge
release
into
master
Jan 4, 2022
Overview
0
Commits
4
Pipelines
0
Changes
1
0
0
Merge request reports
Viewing commit
bf360a33
Prev
Next
Show latest version
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
bf360a33
Add continue to error case
· bf360a33
Jonah Husson
authored
Jan 4, 2022
notifications/notifications.go
+
1
−
0
View file @ bf360a33
Edit in single-file editor
Open in Web IDE
Show full file
@@ -216,6 +216,7 @@ func notifyUser(ephID int64, data []*notifications.Data, apnsClient *apns.ApnsCo
u
,
err
:=
db
.
GetUserByHash
(
e
.
TransmissionRSAHash
)
if
err
!=
nil
{
jww
.
ERROR
.
Printf
(
"Failed to lookup user with tRSA hash %+v: %+v"
,
e
.
TransmissionRSAHash
,
err
)
continue
}
isAPNS
:=
!
strings
.
Contains
(
u
.
Token
,
":"
)
Loading