Skip to content

Missing brackets #5

@Journeytojah

Description

@Journeytojah

Hello, I believe you are missing a pair of brackets here:

modules: [
module: 'camera',
position: 'top_center',
config: selfieInterval: 3, // Time interval in seconds before the photo will be taken.
emailConfig: {
service: 'Hotmail', // Email provider to use to send email with a photo.
auth: {
user: 'name@email.com', // Your email account
pass: '' // Your password for email account
}
}
]

should be:

modules: [
{
module: 'camera',
position: 'top_center',
config: selfieInterval: 3, // Time interval in seconds before the photo will be taken.
emailConfig: {
service: 'Hotmail', // Email provider to use to send email with a photo.
auth: {
user: 'name@email.com', // Your email account
pass: '' // Your password for email account
}
}
}
]

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions