Skip to content

Commit 3750792

Browse files
authored
Update ReadMessage.cs
Hopefully fixed bug reading msg invalid page
1 parent 811a7f8 commit 3750792

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TbsCore/Tasks/LowLevel/ReadMessage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ public override async Task<TaskRes> Execute(Account acc)
1616
if (msg != null)
1717
{
1818
var url = msg.ParentNode.GetAttributeValue("href", "").Replace("amp;", "");
19-
await acc.Wb.Navigate(acc.AccInfo.ServerUrl + "/" + url);
19+
await acc.Wb.Navigate(acc.AccInfo.ServerUrl + url);
2020
await Task.Delay(AccountHelper.Delay(acc) * 5);
2121
}
2222
else return TaskRes.Executed;
2323
}
2424
}
2525
}
26-
}
26+
}

0 commit comments

Comments
 (0)