Commit 06818a4b authored by Stavros-Anastasios Charismiadis's avatar Stavros-Anastasios Charismiadis
Browse files

Fix reading of supported features in ServiceAPIDescription

parent 9758748e
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ class ServiceAPIDescription(Model):
            "MultipleCustomOperations": True if supp_feat_in_bin[5] == "1" else False,
            "ExtendedIntfDesc": True if supp_feat_in_bin[6] == "1" else False,
            "PatchUpdate": True if supp_feat_in_bin[7] == "1" else False,
            "ApiSupportedFeaturePublishing": True if supp_feat_in_bin[9] == "1" else False,
            "ApiSupportedFeaturePublishing": True if supp_feat_in_bin[8] == "1" else False,
        }

    @classmethod