8000 Prosody 0.10 does not allow client@server.com JID format · Issue #94 · jaxl/JAXL · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Prosody 0.10 does not allow client@server.com JID format #94
Open
@uncovery

Description

@uncovery

When you connect to prosody 0.10, you cannot use

$client = new JAXL(array(
        'jid' => 'username@server.com',
        'pass' => 'my_password',
    ));

You need to change it to this format:

$client = new JAXL(array(
        'jid' => 'username',
        'host' => 'server.com',
        'pass' => 'my_password',
    ));

the examples in the documentation should be updated accordingly.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0