I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 941b65eb authored by jrandom's avatar jrandom Committed by zzz
Browse files

2006-02-17 jrandom

    * Disable the message history log file by default (duh - feel free to
      delete messageHistory.txt after upgrading.  thanks deathfatty!)
    * Limit the size of the inbound tunnel build request queue so we don't
      get an insane backlog of requests that we're bound to reject, and adjust
      the queue processing so we keep on churning through them when we've got
      a backlog.
    * Small fixes for the multiuser syndie operation (thanks Complication!)
    * Renamed modified PRNG classes that were imported from gnu-crypto so we
      don't conflict with JVMs using that as a JCE provider (thanks blx!)
parent 8c916746
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,12 @@ public class User {
public String getUsername() { return _username; }
public String getUserHash() { return _userHash; }
public Hash getBlog() { return _blog; }
public String getBlogStr() { return Base64.encode(_blog.getData()); }
public String getBlogStr() {
if (_blog != null)
return Base64.encode(_blog.getData());
else
return null;
}
public long getMostRecentEntry() { return _mostRecentEntry; }
public Map getBlogGroups() { return _blogGroups; }
public List getShitlistedBlogs() { return _shitlistedBlogs; }
......
......@@ -33,6 +33,7 @@ public class ImportFeedServlet extends BaseServlet {
if (!BlogManager.instance().authorizeRemote(user)) {
out.write("<tr><td colspan=\"3\"><span class=\"b_rssMsgErr\">You are not authorized for remote access.</span></td></tr>\n");
return;
} else {
out.write("<tr><td colspan=\"3\">");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment