From 42236c6df3628a3543cf6013d2952484c6f5c8aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Mon, 20 Mar 2023 07:43:00 +0800 Subject: This is what actually is correct --- interchange.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/interchange.cxx b/interchange.cxx index 4f8d9e0..6108547 100644 --- a/interchange.cxx +++ b/interchange.cxx @@ -4,14 +4,16 @@ namespace QInterchange { static Interchange* interchange; - static int sampleUrlLength; + static int sampleUrlLength = 0; Interchange::Interchange(const char* sampleURL, const char* image_Dir, const QString& cookie, const QString& certificate) { interchange = this; +#ifndef __EMSCRIPTEN__ auto length = strlen(sampleURL); - sampleUrlLength = length + (sampleURL[length - 1] == '/'); + sampleUrlLength = length + (sampleURL[length - 1] != '/'); +#endif interchange_init(sampleURL, image_Dir, cookie.isEmpty() ? nullptr : cookie.toLatin1().constData(), @@ -29,7 +31,7 @@ namespace QInterchange { interchange_page(path.toLatin1().constData(), [](interchange_response* response) { interchange->emitPage(QString{response->url} - .remove(0, sampleUrlLength + 1), + .remove(0, sampleUrlLength), QString{response->data}); interchange_free_response(response); }); -- cgit v1.2.3