Skip to content

Instantly share code, notes, and snippets.

@toto
Created March 13, 2012 10:17
Show Gist options
  • Save toto/2027997 to your computer and use it in GitHub Desktop.
Save toto/2027997 to your computer and use it in GitHub Desktop.
diff --git a/Classes/SMEUser.m b/Classes/SMEUser.m
index c9c89f2..f02d339 100644
--- a/Classes/SMEUser.m
+++ b/Classes/SMEUser.m
@@ -569,10 +569,10 @@
- (NSURL *)editingController:(TKModelEditingController *)controller confirmationContentURLForKey:(NSString *)key;
{
if ([key isEqual:@"hasAcceptedPrivacyStatement"]) {
- return [NSURL URLWithString:@"https://www.samedi.de/de/terms_of_service/patient?layout=iphone"];
+ return [NSURL URLWithString:@"https://www.samedi.de/de/privacy_statement/patient?layout=iphone"];
}
if ([key isEqual:@"hasAcceptedTermsOfService"]) {
- return [NSURL URLWithString:@"https://www.samedi.de/de/privacy_statement?layout=iphone"];
+ return [NSURL URLWithString:@"https://www.samedi.de/de/terms_of_service?layout=iphone"];
}
NSAssert1(NO, @"confirmation url requested for key: %@", key);
return nil;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment