Software /
code /
prosody
Comparison
plugins/mod_admin_adhoc.lua @ 7044:8fcee3339463
mod_admin_adhoc: Remove extra ) that should not be there
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 03 Jan 2016 17:22:58 +0100 |
parent | 6796:87ec4e783ebd |
child | 7045:49e2456bf2ce |
comparison
equal
deleted
inserted
replaced
7043:14bc5593b97e | 7044:8fcee3339463 |
---|---|
388 end | 388 end |
389 if session.secure then | 389 if session.secure then |
390 flags[#flags+1] = "encrypted"; | 390 flags[#flags+1] = "encrypted"; |
391 end | 391 end |
392 if session.compressed then | 392 if session.compressed then |
393 flags[#flags+1] = "compressed)"; | 393 flags[#flags+1] = "compressed"; |
394 end | 394 end |
395 if session.smacks then | 395 if session.smacks then |
396 flags[#flags+1] = "sm"; | 396 flags[#flags+1] = "sm"; |
397 end | 397 end |
398 if session.ip and session.ip:match(":") then | 398 if session.ip and session.ip:match(":") then |