mirror of
https://github.com/foss42/apidash.git
synced 2025-05-31 14:23:45 +08:00
correction of compilation error
This commit is contained in:
@ -53,7 +53,7 @@ int main() {
|
||||
|
||||
String kTemplateHeader = """
|
||||
{% if headers %}{% for header, value in headers %}
|
||||
headers = curl_slist_append(headers,"{{header}}: {{value}}") {% endfor %}
|
||||
headers = curl_slist_append(headers,"{{header}}: {{value}}"); {% endfor %}
|
||||
{% endif %}
|
||||
""";
|
||||
String kTemplateHeaderEnd = """
|
||||
@ -147,9 +147,7 @@ int main() {
|
||||
"fields": requestModel.formDataMapList,
|
||||
});
|
||||
}
|
||||
if(requestModel.hasTextData){
|
||||
|
||||
}
|
||||
if (requestModel.hasTextData) {}
|
||||
if (uri.hasQuery) {
|
||||
var params = uri.queryParameters;
|
||||
if (params.isNotEmpty) {
|
||||
|
Reference in New Issue
Block a user