From 0320e752082b4ef064080b937b00c7e990f9bf71 Mon Sep 17 00:00:00 2001 From: IgorKennyPavlov Date: Sat, 13 Aug 2022 22:25:44 +0300 Subject: [PATCH] dweetpro.io => dweet.io MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dweetpro не отвечает. Просто dweet работает. --- modules/@amperka/dweetio.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/@amperka/dweetio.js b/modules/@amperka/dweetio.js index 5117a31..d58da3b 100644 --- a/modules/@amperka/dweetio.js +++ b/modules/@amperka/dweetio.js @@ -1,6 +1,6 @@ var Dweetio = function(name) { this._name = name || 'amperka'; - this._url = ['http://dweetpro.io/dweet/for/', this._name].join(''); + this._url = ['http://dweet.io/dweet/for/', this._name].join(''); this._http = require('http'); }; @@ -26,7 +26,7 @@ Dweetio.prototype.send = function(data, callback) { }; Dweetio.prototype.follow = function() { - return 'https://dweetpro.io/follow/' + this._name; + return 'https://dweet.io/follow/' + this._name; }; exports.connect = function(name) {