summaryrefslogtreecommitdiff
path: root/xmake/modules/private/service/message.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-04-16 14:50:04 +0800
committerruki <[email protected]>2022-04-16 14:50:04 +0800
commit01be5f0a43a5420cfa0da4e879c21f7ca8cee24e (patch)
tree8464b39c1ae535b1a5d4af52a24008f70e08c6fb /xmake/modules/private/service/message.lua
parent489b241302ae13ef9405f27ac9b881db8550dd5a (diff)
diff files
Diffstat (limited to 'xmake/modules/private/service/message.lua')
-rw-r--r--xmake/modules/private/service/message.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake/modules/private/service/message.lua b/xmake/modules/private/service/message.lua
index a097c20f4..039506cdf 100644
--- a/xmake/modules/private/service/message.lua
+++ b/xmake/modules/private/service/message.lua
@@ -145,10 +145,11 @@ function new_disconnect(session_id)
end
-- new diff message
-function new_diff(session_id)
+function new_diff(session_id, manifest)
return _new({
code = message.CODE_DIFF,
- session_id = session_id
+ session_id = session_id,
+ manifest = manifest
})
end