Skip to content

Commit

Permalink
DOLJitManager: Add trailing slash to JitStreamer URL
Browse files Browse the repository at this point in the history
  • Loading branch information
OatmealDome committed May 15, 2022
1 parent 5dbcfee commit 79e4bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/iOS/DolphiniOS/Common/Util/DOLJitManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ - (void)attemptToAcquireJitByJitStreamer
return;
}

NSString* url_string = [NSString stringWithFormat:@"http://69.69.0.1/attach/%ld", (long)getpid()];
NSString* url_string = [NSString stringWithFormat:@"http://69.69.0.1/attach/%ld/", (long)getpid()];

[[[NSURLSession sharedSession] dataTaskWithURL:[NSURL URLWithString:url_string]] resume];
}
Expand Down

0 comments on commit 79e4bd3

Please sign in to comment.