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
When in a group chat and a file is sent to the group, the following code snippet fails (400) to work:
case GENERIC_MESSAGE__CONTENT_ASSET: struct Asset *asset; struct Asset__Original *ao; Asset__RemoteData *ar; asset = gm->asset; ao = asset->original; ar = asset->uploaded; engine_fetch_asset(zcall_engine, conv->id, ar->asset_id, "/tmp/");
Also, while in a group chat, calling engine_send_file using for example: engine_send_file(conv, "image/jpeg", "/tmp/x.jpg"); also fails (404).
engine_send_file
engine_send_file(conv, "image/jpeg", "/tmp/x.jpg");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When in a group chat and a file is sent to the group, the following code snippet fails (400) to work:
Also, while in a group chat, calling
engine_send_file
using for example:engine_send_file(conv, "image/jpeg", "/tmp/x.jpg");
also fails (404).The text was updated successfully, but these errors were encountered: