Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ Arthur Darcet- https://github.com/arthurdarcet
lesterkp - https://github.com/lesterkp
Christoph Lupprich - https://github.com/clupprich
Dmitry Vorobyov - https://github.com/dvor
Mark Anderson - https://github.com/manderson-productions
Mark Anderson - https://github.com/manderson-productions
Marc Doering - https://github.com/triskybro
4 changes: 4 additions & 0 deletions Raven/RavenConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ - (BOOL)setDSN:(NSString *)DSN {
self.publicKey = [DSNURL user];
self.secretKey = [DSNURL password];

if (!self.serverURL || !self.publicKey || !self.secretKey) {
return NO;
}

return YES;
}

Expand Down