Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ fileignoreconfig:
- filename: Contentstack.Core/Models/Asset.cs
checksum: d192718723e6cb2aa8f08f873d3a7ea7268c89cc15da3bdeea4c16fd304c410e
- filename: Contentstack.Core/Models/Query.cs
checksum: fb9b5e4014f937d66b9028b35ea53d750e4d2659daaa48a2941c02f37429725f
checksum: 5816324addf20bc9ed66496ed3f18a90a2a140763378f899798d2d3b019c5f14
- filename: Contentstack.Core/Models/Taxonomy.cs
checksum: 751a725d94eff7d845bb22a5ce80a5529bb62971373de39288149fff3d024930
- filename: .github/workflows/nuget-publish.yml
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Version: 2.22.2
#### Date: July-14-2025

##### Fix:
- Fixed token issue for Live Preview

### Version: 2.22.1
#### Date: June-13-2025

Expand Down
2 changes: 1 addition & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @contentstack/security-admin
* @contentstack/security-admin
4 changes: 2 additions & 2 deletions Contentstack.Core/Models/Query.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1886,11 +1886,11 @@ private async Task<JObject> Exec()
if (this.ContentTypeInstance!=null && this.ContentTypeInstance?.StackInstance.LivePreviewConfig.Enable == true
&& this.ContentTypeInstance?.StackInstance.LivePreviewConfig.ContentTypeUID == this.ContentTypeInstance?.ContentTypeId
&& header.Key == "access_token"
&& isLivePreview)
&& !string.IsNullOrEmpty(this.ContentTypeInstance.StackInstance.LivePreviewConfig.LivePreview))
{
continue;
}
headerAll.Add(header.Key, (string)header.Value);
headerAll.Add(header.Key, (String)header.Value);
}
}

Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>2.22.1</Version>
<Version>2.22.2</Version>
</PropertyGroup>
</Project>
Loading