We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, seems i have it working with rabbitmq to insert realtime.. but when i update the size i get this message on the api.
2022/07/27 14:24:52 pre.update 2022/07/27 14:24:52 json: cannot unmarshal string into Go struct field preRow.size of type float64
Im sending with php. I thought maybe i should do something like this:
$size = number_format($size, 2); $data = array( "id"=> $id, "name"=> $release, "team"=> $team, "cat"=> $cat, "genre"=> $genre, "url"=> $url, "size"=> $size, "files"=> $files, "preAt"=> $timestamp, );
but same error.
can you help me to fix this?
The text was updated successfully, but these errors were encountered:
You can try strval($size)
strval($size)
Sorry, something went wrong.
No branches or pull requests
Hi, seems i have it working with rabbitmq to insert realtime.. but when i update the size i get this message on the api.
Im sending with php. I thought maybe i should do something like this:
but same error.
can you help me to fix this?
The text was updated successfully, but these errors were encountered: