-
Notifications
You must be signed in to change notification settings - Fork 12
Chore: Maintenance #138
New issue
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
base: main
Are you sure you want to change the base?
Chore: Maintenance #138
Conversation
Signed-off-by: Jana Peper <jana.peper@nextcloud.com>
Signed-off-by: Jana Peper <jana.peper@nextcloud.com>
Signed-off-by: Jana Peper <jana.peper@nextcloud.com>
Signed-off-by: Jana Peper <jana.peper@nextcloud.com>
Signed-off-by: Jana Peper <jana.peper@nextcloud.com>
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
| $filePath = $this->config->getAppValue(Application::APP_ID, 'filePath'); | ||
| $userName = $this->config->getAppValue(Application::APP_ID, 'userName'); | ||
| $userId = $this->config->getAppValue(Application::APP_ID, 'userId'); | ||
| $filePath = $this->appConfig->getAppValueString('filePath', lazy: true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should not be get as lazy maybe as the comments say elsewhere
| $supportUserName = $this->config->getAppValue(Application::APP_ID, 'supportUserName', ''); | ||
| $supportText = $this->config->getAppValue(Application::APP_ID, 'supportText', ''); | ||
| $widgetTitle = $this->config->getAppValue(Application::APP_ID, 'widgetTitle', ''); | ||
| $filePath = $this->appConfig->getAppValueString('filePath', '', lazy: true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think lazy in get is always valid and better safe than sorry? 😅 important for set
Uh oh!
There was an error while loading. Please reload this page.