mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
works for fippo (thx)
This commit is contained in:
parent
21ece3c393
commit
076c4491a5
2 changed files with 10 additions and 1 deletions
|
@ -3927,4 +3927,5 @@ net/twitter
|
|||
+ listing: provide a listing of subscribed feeds
|
||||
http/fetch
|
||||
- minor api cleanups to serve a more generic job
|
||||
|
||||
library/dns
|
||||
+ honor #define _flag_disable_trust_localhost
|
||||
|
|
|
@ -414,12 +414,20 @@ w(string mc, string data, mapping vars, mixed source) {
|
|||
# ifdef ALIASES
|
||||
if (raliases[source]) {
|
||||
nick2 = raliases[source];
|
||||
# if 0
|
||||
vars["_INTERNAL_source_IRC"] = nick2 +"!"+
|
||||
u[UNick]? u[UNick] +"@"+ u[UHost]
|
||||
: (vars["_nick_long"]
|
||||
|| vars["_INTERNAL_nick_plain"]
|
||||
|| vars["_nick"])
|
||||
+"@alias.undefined";
|
||||
# else
|
||||
vars["_INTERNAL_source_IRC"] = nick2 +"!"+
|
||||
(u[UNick]? u[UNick] +"@"+ u[UHost]
|
||||
: (vars["_nick_long"]
|
||||
|| vars["_INTERNAL_nick_plain"]
|
||||
|| vars["_nick"]));
|
||||
# endif
|
||||
}
|
||||
|
||||
unless (nick2) {
|
||||
|
|
Loading…
Reference in a new issue