James Moger
2014-05-08 9ff0c16b05cb0eb7c3cc63eda763b0f75d84853c
src/main/java/com/gitblit/servlet/SyndicationServlet.java
@@ -164,9 +164,9 @@
         }
      }
      Constants.FeedContentObjectType objectType = Constants.FeedContentObjectType.COMMIT;
      Constants.FeedObjectType objectType = Constants.FeedObjectType.COMMIT;
      if (!StringUtils.isEmpty(request.getParameter("ot"))) {
         Constants.FeedContentObjectType type = Constants.FeedContentObjectType.forName(request.getParameter("ot"));
         Constants.FeedObjectType type = Constants.FeedObjectType.forName(request.getParameter("ot"));
         if (type != null) {
            objectType = type;
         }
@@ -249,7 +249,7 @@
            feedDescription = model.description;
         }
         if (objectType == Constants.FeedContentObjectType.TAG) {
         if (objectType == Constants.FeedObjectType.TAG) {
            String urlPattern;
            if (mountParameters) {