Skip to content

Commit

Permalink
Fix presence time.
Browse files Browse the repository at this point in the history
  • Loading branch information
jq-rs committed May 18, 2020
1 parent 458abd8 commit e6b8d4f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/mlestalk.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,14 @@ const MSGISIMAGE = (0x1 << 2);
const MSGISMULTIPART = (0x1 << 3);
const MSGISFIRST = (0x1 << 4);
const MSGISLAST = (0x1 << 5);
const BEGIN = new Date(Date.UTC(2018, 0, 1, 0, 0, 0));

let gUidQueue = {};

const IMGMAXSIZE = 960; /* px */
const IMGFRAGSIZE = 512 * 1024;

let gInitOk = false;
const PRESENCETIME = 121 * 1000; /* ms */
const PRESENCETIME = 181 * 1000; /* ms */
const RETIMEOUT = 1500; /* ms */
const MAXTIMEOUT = 1000 * 60 * 5; /* ms */
const MAXQLEN = 32;
Expand Down

0 comments on commit e6b8d4f

Please sign in to comment.