mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
WebDriver: Actually create a UUID for session_id
This commit is contained in:
parent
ed83bb75e9
commit
57f776fcb7
Notes:
github-actions[bot]
2025-01-03 21:16:49 +00:00
Author: https://github.com/F3n67u
Commit: 57f776fcb7
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3123
4 changed files with 13 additions and 19 deletions
|
@ -19,10 +19,10 @@
|
|||
|
||||
namespace WebDriver {
|
||||
|
||||
Session::Session(unsigned session_id, NonnullRefPtr<Client> client, Web::WebDriver::LadybirdOptions options)
|
||||
Session::Session(String session_id, NonnullRefPtr<Client> client, Web::WebDriver::LadybirdOptions options)
|
||||
: m_client(move(client))
|
||||
, m_options(move(options))
|
||||
, m_id(session_id)
|
||||
, m_id(move(session_id))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue