This commit is contained in:
Santiago Lema 2024-09-30 17:04:07 -03:00
parent 7cb8eecde9
commit e2cc208ee4
2 changed files with 3 additions and 3 deletions

BIN
DumBer

Binary file not shown.

View file

@ -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() {