about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-08-29 20:26:10 +0530
committerAndinus <andinus@nand.sh>2020-08-29 20:26:10 +0530
commit4fdeba51c8d73a80120f8fc22623fe3864bea0d7 (patch)
tree305ef5bbb5c0dab7da32dc0d96632090d7a5eaef
parentd5cb7559c055f41b86bad5590e13262635b1cf11 (diff)
downloadpyxis-4fdeba51c8d73a80120f8fc22623fe3864bea0d7.tar.gz
Comment user-agent change
That's basically giving my IP address to people because I don't think
anyone else will be using this. So feed owners could just link the IP
to me directly which is not good.
-rwxr-xr-xpyxis.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyxis.pl b/pyxis.pl
index 07fdffd..45e523f 100755
--- a/pyxis.pl
+++ b/pyxis.pl
@@ -50,7 +50,7 @@ my %dispatch = (
             ->new(
                 verify_SSL => 1,
                 # default user-agent string if ending in space.
-                agent => "pyxis: https://andinus.nand.sh/pyxis ",
+                # agent => "pyxis: https://andinus.nand.sh/pyxis ",
             );
 
         foreach my $feed (sort keys %feeds) {
'>121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195