Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple code change to eliminate deprecated warning (See issue #99) #100

Merged
merged 3 commits into from
Jan 19, 2024
Merged
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
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ function fastifyAcceptsSerializer (fastify, options, next) {
let serializer
let type

if (reply.context.config.serializers) {
if (request.routeOptions.config.serializers) {
// keep route level cache in config to prevent messing with global cache
reply.context.config.serializers.cache = Object.assign({}, reply.context.config.serializers.cache)
request.routeOptions.config.serializers.cache = Object.assign({}, request.routeOptions.config.serializers.cache)
reply.serializer.serializerManager = SerializerManager.expand({
serializers: reply.context.config.serializers,
cache: reply.context.config.serializers.cache
serializers: request.routeOptions.config.serializers,
cache: request.routeOptions.config.serializers.cache
}, globalSerializerManager)
} else {
// use global serializer
Expand Down