File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 48
48
},
49
49
"repository" : {
50
50
"type" : " git" ,
51
- "url" : " git+https://github.com/RedisLabs/redisinsight-v2 .git"
51
+ "url" : " git+https://github.com/RedisInsight/RedisInsight .git"
52
52
},
53
53
"author" : {
54
54
"name" : " Redis Ltd." ,
55
55
56
56
"url" : " https://redis.com/redis-enterprise/redis-insight"
57
57
},
58
58
"bugs" : {
59
- "url" : " https://github.com/RedisLabs/redisinsight-v2 /issues"
59
+ "url" : " https://github.com/RedisInsight/RedisInsight /issues"
60
60
},
61
61
"keywords" : [
62
62
" redisinsight" ,
68
68
" sass" ,
69
69
" webpack"
70
70
],
71
- "homepage" : " https://github.com/RedisLabs/redisinsight-v2 #readme" ,
71
+ "homepage" : " https://github.com/RedisInsight/RedisInsight #readme" ,
72
72
"jest" : {
73
73
"testURL" : " http://localhost/" ,
74
74
"moduleNameMapper" : {
Original file line number Diff line number Diff line change @@ -48,10 +48,14 @@ export default class AppUpdater {
48
48
log . info ( 'AppUpdater initialization' ) ;
49
49
log . transports . file . level = 'info' ;
50
50
51
- autoUpdater . setFeedURL ( {
52
- provider : 'generic' ,
53
- url : process . env . MANUAL_UPGRADES_LINK || process . env . UPGRADES_LINK ,
54
- } ) ;
51
+ try {
52
+ autoUpdater . setFeedURL ( {
53
+ provider : 'generic' ,
54
+ url : process . env . MANUAL_UPGRADES_LINK || process . env . UPGRADES_LINK ,
55
+ } ) ;
56
+ } catch ( error ) {
57
+ log . error ( error ) ;
58
+ }
55
59
56
60
autoUpdater . checkForUpdatesAndNotify ( ) ;
57
61
autoUpdater . autoDownload = true ;
You can’t perform that action at this time.
0 commit comments