webfast 0.1.42 → 0.1.43

Sign up to get free protection for your applications and to get access to all the features.
@@ -285,14 +285,20 @@ jQuery(document).ready(function() {
285
285
  }
286
286
 
287
287
  const webFastFunc = jQuery(this).attr(`webfast-func`);
288
- web.fast.sendMessage(`socket.api.${webAction}`,{
289
- ts : Date.now(),
290
- ell : jQuery(this).attr(`id`),
291
- other : other,
292
- action : action,
293
- webAction : webAction,
294
- function : webFastFunc
288
+
289
+ // Create que instead of sending quick
290
+ web.fast.que.list.push({
291
+ path : `socket.api.${webAction}`,
292
+ message : {
293
+ ts : Date.now(),
294
+ ell : jQuery(this).attr(`id`),
295
+ other : other,
296
+ action : action,
297
+ webAction : webAction,
298
+ function : webFastFunc
299
+ }
295
300
  })
301
+
296
302
  break;
297
303
  case "BUTTON":
298
304
  // Check button interaction
@@ -2,6 +2,10 @@ module.exports = {
2
2
  dependOn : [`express.app`],
3
3
  name : 'bot',
4
4
  run : async function(program,name) {
5
+ if (process.env.bot == 'false') {
6
+ return false;
7
+ }
8
+
5
9
  console.log(`Running ${name}`);
6
10
  // Scan bots folder and exclude
7
11
  const routesPath = program.path.join(__dirname,`applications`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webfast",
3
- "version": "0.1.42",
3
+ "version": "0.1.43",
4
4
  "description": "WebFast! Bot Application, including TON mini-apps for makign it easy and fast to build ini-apps",
5
5
  "main": "index.js",
6
6
  "repository": {