mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
net.websocket.frames: Prefer Lua 5.2 built-in bit module over LuaJIT version
When running on Lua 5.2 this makes sense since bit32 is usually already loaded. It's sensible to prefer this going forward in case of incompatibilities between the two variants.
This commit is contained in:
parent
1331a867a7
commit
874cf01e2b
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
|||
local softreq = require "util.dependencies".softreq;
|
||||
local random_bytes = require "util.random".bytes;
|
||||
|
||||
local bit = assert(softreq"bit" or softreq"bit32",
|
||||
local bit = assert(softreq"bit32" or softreq"bit",
|
||||
"No bit module found. See https://prosody.im/doc/depends#bitop");
|
||||
local band = bit.band;
|
||||
local bor = bit.bor;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue