mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 04:39:54 +01:00
Fix merge request race condition
This commit is contained in:
@@ -96,7 +96,7 @@ class MailboxApiImpl implements MailboxApi {
|
|||||||
throws IOException, ApiException {
|
throws IOException, ApiException {
|
||||||
if (!properties.isOwner()) throw new IllegalArgumentException();
|
if (!properties.isOwner()) throw new IllegalArgumentException();
|
||||||
Request request = getRequestBuilder(properties.getAuthToken())
|
Request request = getRequestBuilder(properties.getAuthToken())
|
||||||
.url(properties.getOnionAddress() + "/")
|
.url(properties.getBaseUrl() + "/")
|
||||||
.delete()
|
.delete()
|
||||||
.build();
|
.build();
|
||||||
OkHttpClient client = httpClientProvider.get();
|
OkHttpClient client = httpClientProvider.get();
|
||||||
|
|||||||
Reference in New Issue
Block a user