File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ function onCustomBGServiceConfigDownloadSuccess(data) {
296
296
logger . debug ( `Custom background service remote configuration stored at '${ downloadPath } '` ) ;
297
297
}
298
298
catch ( err ) {
299
- logger . error ( `Failed to save remote configuration at '${ downloadPath } '` ) ;
299
+ logger . error ( `Fetched custom background remote configuration but failed to save at '${ downloadPath } '. ${ err . message } ` ) ;
300
300
}
301
301
}
302
302
@@ -315,11 +315,11 @@ function setPath(cfg) {
315
315
316
316
function onCustomBGServiceConfigDownloadFailure ( err ) {
317
317
const dlpath = path . join ( app . getPath ( 'userData' ) , 'custom_bg_remote.json' ) ;
318
- logger . error ( err . message ) ;
318
+ logger . error ( `Failed to fetch custom background remote configuration. ${ err . message } ` ) ;
319
319
try {
320
320
fs . writeFileSync ( dlpath , JSON . stringify ( [ ] ) ) ;
321
321
}
322
322
catch ( err ) {
323
- logger . error ( `Failed to save remote configuration at '${ dlpath } '` ) ;
323
+ logger . error ( `Failed to save custom background default configuration at '${ dlpath } '. ${ err . message } ` ) ;
324
324
}
325
325
}
Original file line number Diff line number Diff line change 14
14
<url type =" bugtracker" >https://github.com/IsmaelMartinez/teams-for-linux/issues</url >
15
15
<launchable type =" desktop-id" >com.github.IsmaelMartinez.teams_for_linux.desktop</launchable >
16
16
<releases >
17
+ <release version =" 1.4.23" date =" 2024-04-12" >
18
+ <description >
19
+ <ul >
20
+ <li >Additional logs for debugging custom background issues</li >
21
+ </ul >
22
+ </description >
23
+ </release >
17
24
<release version =" 1.4.22" date =" 2024-04-12" >
18
25
<description >
19
26
<ul >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " teams-for-linux" ,
3
- "version" : " 1.4.22 " ,
3
+ "version" : " 1.4.23 " ,
4
4
"main" : " app/index.js" ,
5
5
"description" : " Unofficial client for Microsoft Teams for Linux" ,
6
6
"homepage" : " https://github.com/IsmaelMartinez/teams-for-linux" ,
You can’t perform that action at this time.
0 commit comments