mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
Fix some bugs
This commit is contained in:
parent
aac6ec3d4c
commit
ba0b5e85be
@ -349,9 +349,14 @@ namespace Bloxstrap
|
||||
{
|
||||
startEvent.Reset();
|
||||
|
||||
string rbxLogDir = Path.Combine(Paths.LocalAppData, "Roblox\\logs");
|
||||
|
||||
if (!Directory.Exists(rbxLogDir))
|
||||
Directory.CreateDirectory(rbxLogDir);
|
||||
|
||||
var logWatcher = new FileSystemWatcher()
|
||||
{
|
||||
Path = Path.Combine(Paths.LocalAppData, "Roblox\\logs"),
|
||||
Path = rbxLogDir,
|
||||
Filter = "*.log",
|
||||
EnableRaisingEvents = true
|
||||
};
|
||||
|
@ -36,7 +36,7 @@ namespace Bloxstrap.UI.ViewModels.ContextMenu
|
||||
|
||||
if (entries.Any())
|
||||
{
|
||||
string universeIds = String.Join(',', entries.GroupBy(x => x.UniverseId).Select(x => x.First()));
|
||||
string universeIds = String.Join(',', entries.Select(x => x.UniverseId).Distinct());
|
||||
|
||||
try
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user