Software /
code /
prosody-modules
Changeset
790:4f9cd19c4658
mod_twitter: fixed to depend on Prosody's internal util.json. TODO: Discuss (MattJ, Zash, Waqas, Maranda) about migration all json content to use cjson ( http://www.kyne.com.au/~mark/software/lua-cjson-manual.html ) library instead
author | Vadim Misbakh-Soloviov <mva@mva.name> |
---|---|
date | Fri, 10 Aug 2012 07:42:53 +0700 |
parents | 789:7e40d6680093 |
children | 791:b9d149936764 |
files | mod_twitter/mod_twitter.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_twitter/mod_twitter.lua Thu Aug 09 20:31:13 2012 +0200 +++ b/mod_twitter/mod_twitter.lua Fri Aug 10 07:42:53 2012 +0700 @@ -11,7 +11,7 @@ local datamanager = require "util.datamanager"; local timer = require "util.timer"; local http = require "net.http"; -local json = require "json"; +local json = require "util.json"; local base64 = require "util.encodings".base64; local component_host = module:get_host();