mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-13 12:14:17 +01:00
Remove doubled skip from collection listing.
This commit is contained in:
parent
0239c2f60b
commit
e716bbbc01
1 changed files with 1 additions and 1 deletions
|
|
@ -431,7 +431,7 @@ public class PenumbraApi : IDisposable, IPenumbraApi
|
|||
public IList< string > GetCollections()
|
||||
{
|
||||
CheckInitialized();
|
||||
return Penumbra.CollectionManager.Skip( 1 ).Select( c => c.Name ).ToArray();
|
||||
return Penumbra.CollectionManager.Select( c => c.Name ).ToArray();
|
||||
}
|
||||
|
||||
public string GetCurrentCollection()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue