mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 23:36:00 +02:00
LoadTextFile share fix
This commit is contained in:
parent
897b1f6fc4
commit
9c1bf60780
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ namespace Beefy
|
|||
// Retry for a while if the other side is still writing out the file
|
||||
for (int i = 0; i < 100; i++)
|
||||
{
|
||||
if (sr.Open(filePath, .Read, .Read) case .Err(let fileOpenErr))
|
||||
if (sr.Open(filePath, .Read, .ReadWrite) case .Err(let fileOpenErr))
|
||||
{
|
||||
bool retry = false;
|
||||
if (autoRetry)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue