mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
handle_script_source_info should send source_actor_name not thread
Signed-off-by: atbrakhi <atbrakhi@igalia.com>
This commit is contained in:
parent
be50cba8bb
commit
aa032cf80c
1 changed files with 2 additions and 2 deletions
|
@ -530,7 +530,7 @@ impl DevtoolsInstance {
|
|||
.add_source(source_info.url.clone(), source_info.content.clone());
|
||||
|
||||
let source = SourceData {
|
||||
actor: thread_actor_name.clone(),
|
||||
actor: source_actor_name.clone(),
|
||||
url: source_info.url.to_string(),
|
||||
is_black_boxed: false,
|
||||
source_content: source_info.content,
|
||||
|
@ -560,7 +560,7 @@ impl DevtoolsInstance {
|
|||
.add_source(source_info.url.clone(), source_info.content.clone());
|
||||
|
||||
let source = SourceData {
|
||||
actor: thread_actor_name.clone(),
|
||||
actor: source_actor_name.clone(),
|
||||
url: source_info.url.to_string(),
|
||||
is_black_boxed: false,
|
||||
source_content: source_info.content,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue