Author: fmantek
Date: Mon May 14 06:33:13 2007
New Revision: 148

Modified:
   trunk/clients/cs/RELEASE_NOTES.txt
   trunk/clients/cs/src/core/utilities.cs

Log:
Fixed an issue with composite feeds not loading/parsing correctly when a 
feedlink existed

Modified: trunk/clients/cs/RELEASE_NOTES.txt
==============================================================================
--- trunk/clients/cs/RELEASE_NOTES.txt  (original)
+++ trunk/clients/cs/RELEASE_NOTES.txt  Mon May 14 06:33:13 2007
@@ -1,6 +1,8 @@
 == 1.0.9.9 ==
 - fixed a bug in GDataRequestException that would prevent AppsException from 
accessing the server's response.
 - modified AppsException to comply with new GDataRequestException
+- fixed a bug in CalculateBaseUri, that caused a crash if the passed in 
parameters are all NULL. This caused composite feeds
+  to not load if there was a comment feed embedded
 
 == 1.0.9.8 ==
 - fixed a parsing bug in SpreadsheetService

Modified: trunk/clients/cs/src/core/utilities.cs
==============================================================================
--- trunk/clients/cs/src/core/utilities.cs      (original)
+++ trunk/clients/cs/src/core/utilities.cs      Mon May 14 06:33:13 2007
@@ -293,7 +293,7 @@
                     uriComplete = uriBase;
                 }
     
-                return uriComplete.AbsoluteUri;
+                return uriComplete != null ? uriComplete.AbsoluteUri : null;
             }
             catch (System.UriFormatException)
             {

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to