You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
Chore: Apply eslint rules
This commit is contained in:
@ -52,10 +52,10 @@ class SyncTargetDropbox extends BaseSyncTarget {
|
||||
|
||||
api.on('authRefreshed', auth => {
|
||||
this.logger().info('Saving updated Dropbox auth.');
|
||||
Setting.setValue('sync.' + SyncTargetDropbox.id() + '.auth', auth ? auth : null);
|
||||
Setting.setValue(`sync.${SyncTargetDropbox.id()}.auth`, auth ? auth : null);
|
||||
});
|
||||
|
||||
const authToken = Setting.value('sync.' + SyncTargetDropbox.id() + '.auth');
|
||||
const authToken = Setting.value(`sync.${SyncTargetDropbox.id()}.auth`);
|
||||
api.setAuthToken(authToken);
|
||||
|
||||
const appDir = '';
|
||||
|
Reference in New Issue
Block a user