Skip to content

Commit

Permalink
Double timeout interval. Update UpdateNotification.
Browse files Browse the repository at this point in the history
  • Loading branch information
melgu committed Jun 20, 2020
1 parent 3d14554 commit 3dffe48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Denon Volume.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1.21;
CURRENT_PROJECT_VERSION = 1.22;
DEVELOPMENT_TEAM = V7E5P7292M;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -627,7 +627,7 @@
"@loader_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 1.21;
MARKETING_VERSION = 1.22;
PRODUCT_BUNDLE_IDENTIFIER = "com.melgu.Denon-Volume";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -644,7 +644,7 @@
CODE_SIGN_IDENTITY = "Mac Developer";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1.21;
CURRENT_PROJECT_VERSION = 1.22;
DEVELOPMENT_TEAM = V7E5P7292M;
ENABLE_HARDENED_RUNTIME = YES;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -658,7 +658,7 @@
"@loader_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 1.21;
MARKETING_VERSION = 1.22;
PRODUCT_BUNDLE_IDENTIFIER = "com.melgu.Denon-Volume";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"repositoryURL": "[email protected]:MikelG/updatenotification.git",
"state": {
"branch": "master",
"revision": "a198a04c3fb74743c90655e00349d412faf566c7",
"revision": "9dd07d9d919215d048be377145c6055832fecd05",
"version": null
}
}
Expand Down
4 changes: 2 additions & 2 deletions Denon Volume/DenonCommunicator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public class DenonCommunicator {

init() {
let sessionConfig = URLSessionConfiguration.default
sessionConfig.timeoutIntervalForRequest = 0.5 // URL Session Timout per partial Request
sessionConfig.timeoutIntervalForResource = 0.5 // URL Session Total Timout per Resourcwe
sessionConfig.timeoutIntervalForRequest = 1.0 // URL Session Timout per partial Request
sessionConfig.timeoutIntervalForResource = 1.0 // URL Session Total Timout per Resourcwe
session = URLSession(configuration: sessionConfig)
}

Expand Down

0 comments on commit 3dffe48

Please sign in to comment.