Changeset 94736 in vbox
- Timestamp:
- Apr 28, 2022 1:26:10 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp
r94730 r94736 651 651 m->enmChannel = data.enmChannel; 652 652 m->uCheckFreqSeconds = data.uCheckFreqSeconds; 653 m->strRepoUrl = data.strRepoUrl; 653 if (data.strRepoUrl.isNotEmpty()) /* Prevent overwriting the agent's default URL when XML settings are empty. */ 654 m->strRepoUrl = data.strRepoUrl; 654 655 m->enmProxyMode = data.enmProxyMode; 655 656 m->strProxyUrl = data.strProxyUrl; … … 867 868 { 868 869 RT_NOREF(pTask); 870 871 AssertReturn(m->strRepoUrl.isNotEmpty(), E_INVALIDARG); 869 872 870 873 // Following the sequence of steps in UIUpdateStepVirtualBox::sltStartStep()
Note:
See TracChangeset
for help on using the changeset viewer.