aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-10-12 21:29:20 +0200
committerKim Alvefur <zash@zash.se>2020-10-12 21:29:20 +0200
commitb0393fe9e1c0a46319cff8de8bb05d7b5dbcff3b (patch)
treee4d006dc4649263aa45d6fb1ce4103abfc20a1e3 /util
parentb4af560c9711221a4da3da41c8cef1d302b63beb (diff)
parentfb63187afceb8339b6142cc0b96162eb1c9af3b8 (diff)
downloadprosody-b0393fe9e1c0a46319cff8de8bb05d7b5dbcff3b.tar.gz
prosody-b0393fe9e1c0a46319cff8de8bb05d7b5dbcff3b.zip
Merge 0.11->trunk
Diffstat (limited to 'util')
-rw-r--r--util/dbuffer.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/dbuffer.lua b/util/dbuffer.lua
index a50f3a64..9d58b306 100644
--- a/util/dbuffer.lua
+++ b/util/dbuffer.lua
@@ -135,6 +135,7 @@ end
function dbuffer_methods:length()
return self._length;
end
+dbuffer_methods.len = dbuffer_methods.length; -- strings have :len()
dynamic_buffer_mt.__len = dbuffer_methods.length; -- support # operator
function dbuffer_methods:collapse(bytes)