You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addition to the changes made for #302, the unsupported logic should change to check which child elements are supported, as per the spec:
datamodel.element._children
The _children keyword is used to determine all of the elements in a group or category that are supported by the LMS.
LMSGetValue(datamodel.group._children)
The return value is a comma-separated list of all of the element names in the specified group or category that are supported by the LMS. If an element has no children, but is supported, an empty string ("") is returned. An empty string ("") is also returned if an element is not supported. A subsequent request for last error [LMSGetLastError()] can determine if the element is not supported. The error “401 Not implemented error” indicates the element is not supported.
The current method of just checking _count could lead to errors being raised where not all the child elements are supported.
The text was updated successfully, but these errors were encountered:
In addition to the changes made for #302, the unsupported logic should change to check which child elements are supported, as per the spec:
The current method of just checking
_count
could lead to errors being raised where not all the child elements are supported.The text was updated successfully, but these errors were encountered: