We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9600814 commit e05e805Copy full SHA for e05e805
src/stores/settings.ts
@@ -120,6 +120,10 @@ export const useSettingsStore = defineStore('settings', {
120
}
121
this.$patch({ ...storage, _loaded: true });
122
123
+ // Since `requestTimeout` is used to initialize the client, we need to set it again
124
+ // https://github.com/ActivityWatch/activitywatch/issues/979
125
+ client.req.defaults.timeout = this.requestTimeout * 1000;
126
+
127
if (save) {
128
await this.save();
129
0 commit comments