Author: fmantek
Date: Fri Apr 13 10:18:15 2007
New Revision: 135
Modified:
trunk/clients/cs/src/gapps/appsexception.cs
Log:
Fixed an issue with the apps exception.
Modified: trunk/clients/cs/src/gapps/appsexception.cs
==============================================================================
--- trunk/clients/cs/src/gapps/appsexception.cs (original)
+++ trunk/clients/cs/src/gapps/appsexception.cs Fri Apr 13 10:18:15 2007
@@ -131,7 +131,7 @@
// now find the ErrorElement
while (reader.Read())
{
- if (reader.NodeType == XmlNodeType.EndElement
&& reader.LocalName.Equals(AppsNameTable.XmlElementError))
+ if (reader.NodeType == XmlNodeType.Element &&
reader.LocalName.Equals(AppsNameTable.XmlElementError))
{
break;
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---