Ignore:
Timestamp:
Mar 28, 2023, 5:40:08 PM (20 months ago)
Author:
alloc
Message:

Added release files to version control

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/WebServer/src/WebUtils.cs

    r404 r422  
    2424                        _resp.ContentEncoding = Encoding.UTF8;
    2525
    26                         byte[] buf = Encoding.UTF8.GetBytes (_text);
    27                         _resp.ContentLength64 = buf.Length;
    28                         _resp.OutputStream.Write (buf, 0, buf.Length);
     26                        if (string.IsNullOrEmpty (_text)) {
     27                                _resp.ContentLength64 = 0;
     28                        } else {
     29                                byte[] buf = Encoding.UTF8.GetBytes (_text);
     30                                _resp.ContentLength64 = buf.Length;
     31                                _resp.OutputStream.Write (buf, 0, buf.Length);
     32                        }
    2933                }
    3034
Note: See TracChangeset for help on using the changeset viewer.