@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 a few minor JSHint warnings

Summary: Basically, don't assign expressions to a variable if the variable is unused.

Test Plan: `arc lint`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

authored by

Joshua Spence and committed by
epriestley
fcc7dbbf b6e0c76c

+3 -3
+3 -3
support/aphlict/server/aphlict_server.js
··· 69 69 process.exit(1); 70 70 }); 71 71 72 - var flash_server = new JX.AphlictFlashPolicyServer() 72 + new JX.AphlictFlashPolicyServer() 73 73 .setDebugLog(debug) 74 74 .setAccessPort(config.port) 75 75 .start(); 76 76 77 77 78 - var send_server = net.createServer(function(socket) { 78 + net.createServer(function(socket) { 79 79 var listener = clients.addListener(socket); 80 80 81 81 debug.log('<%s> Connected from %s', ··· 161 161 var messages_in = 0; 162 162 var start_time = new Date().getTime(); 163 163 164 - var receive_server = http.createServer(function(request, response) { 164 + http.createServer(function(request, response) { 165 165 // Publishing a notification. 166 166 if (request.url == '/') { 167 167 if (request.method == 'POST') {