Skip to content

Commit

Permalink
Fix: authorname not displayname
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak committed Nov 13, 2024
1 parent 08bb3d4 commit a051f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/Sharing/AssetLister.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public IEnumerator<object> NextPage(List<IcosaSceneFileInfo> files)
foreach (var asset in assets)
{
var info = new IcosaSceneFileInfo(asset);
info.Author = asset["displayName"].ToString();
info.Author = asset["authorName"].ToString();
files.Add(info);
}
}
Expand Down

0 comments on commit a051f12

Please sign in to comment.