Also encode '=' in url parameter value, to be alighed with server side

This commit is contained in:
Jinming Hu 2019-11-27 10:22:38 +08:00 коммит произвёл Vincent Jiang (LEI)
Родитель 4bdcfe1c1d
Коммит 42e74826f5
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -213,6 +213,8 @@ namespace azure { namespace storage_lite {
{
ret[c] = 1;
}
// Surprisingly, '=' also needs to be encoded because Azure Storage server side is so strict.
ret['='] = 0;
return ret;
}();