mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
Fix build, increase StringBuilder starting size
This commit is contained in:
parent
e0edbc5754
commit
d0857cf655
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Jellyfin.Data.Entities;
|
||||
using MediaBrowser.Common.Extensions;
|
||||
|
@ -274,7 +275,7 @@ namespace Emby.Drawing
|
|||
string backgroundColor,
|
||||
string foregroundLayer)
|
||||
{
|
||||
var filename = new StringBuilder(128);
|
||||
var filename = new StringBuilder(256);
|
||||
filename.Append(originalPath);
|
||||
|
||||
filename.Append(",quality=");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue