Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
chatop2020 committed Dec 20, 2024
1 parent 7f13b2d commit 3148132
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AKStreamWeb/Services/WebHookService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1434,9 +1434,9 @@ public static ResMediaServerKeepAlive MediaServerKeepAlive(ReqMediaServerKeepAli
tmpMediaServer.AKStreamKeeperVersion = req.Version;
tmpMediaServer.ZlmBuildDateTime = req.ZlmBuildDateTime;
tmpMediaServer.CutMergeFilePath = req.CutMergeFilePath;
mediaServer.EnableBackStroage = req.EnableBackStroage;
mediaServer.BackStroageFilePath = req.BackStroageFilePath;
mediaServer.BackStorageDevPath = req.BackStorageDevPath;
tmpMediaServer.EnableBackStroage = req.EnableBackStroage;
tmpMediaServer.BackStroageFilePath = req.BackStroageFilePath;
tmpMediaServer.BackStorageDevPath = req.BackStorageDevPath;
tmpMediaServer.DisksUseable.Clear();
if (req.DisksUseable != null && req.DisksUseable.Count > 0)
{
Expand Down
1 change: 1 addition & 0 deletions LibSystemInfo/SystemInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ private void GetInfo()
switch (_operatingSystemType)
{
case OperatingSystemType.Windows:
CPUWinLoadValue.Refresh();
_globalSystemInfo.CpuLoad = CPUWinLoadValue.CPULOAD;
_globalSystemInfo.NetWorkStat = NetWorkWinValue3.GetNetworkStat();
break;
Expand Down

0 comments on commit 3148132

Please sign in to comment.