Software /
code /
prosody
Annotate
core/offlinemessage.lua @ 449:c0a4a1e63d70
Completely switched to new hashes library from the old md5 library
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Fri, 28 Nov 2008 01:16:26 +0500 |
parent | 129:0f119bece309 |
child | 519:cccd610a0ef9 |
rev | line source |
---|---|
0 | 1 |
2 require "util.datamanager" | |
3 | |
4 local datamanager = datamanager; | |
5 local t_insert = table.insert; | |
6 | |
7 module "offlinemessage" | |
8 | |
9 function new(user, host, stanza) | |
10 local offlinedata = datamanager.load(user, host, "offlinemsg") or {}; | |
11 t_insert(offlinedata, stanza); | |
12 return datamanager.store(user, host, "offlinemsg", offlinedata); | |
13 end | |
129
0f119bece309
Fixed: Some modules did not return anything
Waqas Hussain <waqas20@gmail.com>
parents:
0
diff
changeset
|
14 |
0f119bece309
Fixed: Some modules did not return anything
Waqas Hussain <waqas20@gmail.com>
parents:
0
diff
changeset
|
15 return _M; |