diff --git a/DumBer b/DumBer index e15edf5..2792e85 100755 Binary files a/DumBer and b/DumBer differ diff --git a/MainWindow.cpp b/MainWindow.cpp index 53d3b7d..005707d 100644 --- a/MainWindow.cpp +++ b/MainWindow.cpp @@ -167,14 +167,14 @@ void MainWindow::sendQuery() { _progress->SetTo(50); auto url = BUrl("https://www.smallte.ch/"); - auto request = BHttpRequest(std::move(url)); + auto request = BHttpRequest(url); // Add a cookie to the session, this cookie will be used in window1 and // window2 // BNetworkCookie cookie("key", "value", BUrl("https://example.com/")); // session.AddCookie(std::move(cookie)); - - _sharedSession.Execute(request, nullptr, this); + _sharedSession.Execute(std::move(request), nullptr, this); + } BMenuBar *MainWindow::_BuildMenu() {