Using VariableValue instead of Variable

This commit is contained in:
Felipe Zimmerle 2018-10-11 10:01:32 -03:00
parent 2d87fc5184
commit 5ed5377432
No known key found for this signature in database
GPG Key ID: E6DFB08CE8B11277

View File

@ -1593,7 +1593,7 @@ std::string Transaction::toBuf() {
a.append(" HTTP/");
a.append(m_httpVersion);
a.append("\n");
std::vector<const collection::Variable *> l;
std::vector<const VariableValue *> l;
m_variableRequestHeaders.resolve(&l);
for (auto h : l) {
size_t pos = strlen("REQUEST_HEADERS:");