summaryrefslogtreecommitdiff
path: root/CyteKit/extern.mm
diff options
context:
space:
mode:
Diffstat (limited to 'CyteKit/extern.mm')
-rw-r--r--CyteKit/extern.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/CyteKit/extern.mm b/CyteKit/extern.mm
index aad3626..42317e1 100644
--- a/CyteKit/extern.mm
+++ b/CyteKit/extern.mm
@@ -58,7 +58,7 @@ bool CyteIsReachable(const char *name) {
;
}
-void CyteInitialize(NSString *app, NSString *version) {
+void CyteInitialize(NSString *agent) {
UIScreen *screen([UIScreen mainScreen]);
if ([screen respondsToSelector:@selector(scale)])
ScreenScale_ = [screen scale];
@@ -96,7 +96,7 @@ void CyteInitialize(NSString *app, NSString *version) {
safari = [info objectForKey:@"CFBundleVersion"];
}
- NSString *agent([NSString stringWithFormat:@"%@/%@ CyF/%.2f", app, version, kCFCoreFoundationVersionNumber]);
+ agent = [NSString stringWithFormat:@"%@ CyF/%.2f", agent, kCFCoreFoundationVersionNumber];
if (RegEx match = RegEx("([0-9]+(\\.[0-9]+)+).*", safari))
agent = [NSString stringWithFormat:@"Safari/%@ %@", match[1], agent];