mirror of
https://github.com/1f349/mail.1f349.com.git
synced 2024-11-09 22:32:52 +00:00
WS args are strings
This commit is contained in:
parent
30b640995b
commit
d937f18a19
@ -50,7 +50,7 @@
|
|||||||
function grabFolderMessages(p: TreeFolder) {
|
function grabFolderMessages(p: TreeFolder) {
|
||||||
let msgs = messageList.get(p.path);
|
let msgs = messageList.get(p.path);
|
||||||
if (msgs == undefined) {
|
if (msgs == undefined) {
|
||||||
mainWS.send(JSON.stringify({action: "fetch", args: [p.path, 1, 10, 10]}));
|
mainWS.send(JSON.stringify({action: "fetch", args: [p.path, "1", "10", "10"]}));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
folderMessages = msgs;
|
folderMessages = msgs;
|
||||||
|
Loading…
Reference in New Issue
Block a user