@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix Aphlict server for newer Node

Summary: Fixes T3630.

Test Plan: Ran server on 0.11.0, got notifications.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T3630

Differential Revision: https://secure.phabricator.com/D6588

+4 -6
+4 -6
support/aphlict/server/aphlict_server.js
··· 129 129 var client_id = generate_id(); 130 130 var client_name = '[' + socket.remoteAddress + '] [#' + client_id + '] '; 131 131 132 - socket.on('connect', function() { 133 - clients[client_id] = socket; 134 - current_connections++; 135 - log(client_name + 'connected\t\t(' + 136 - current_connections + ' current connections)'); 137 - }); 132 + clients[client_id] = socket; 133 + current_connections++; 134 + log(client_name + 'connected\t\t(' + 135 + current_connections + ' current connections)'); 138 136 139 137 socket.on('close', function() { 140 138 delete clients[client_id];