Copying caption to value breaks some data exports

Created on 28 January 2021, about 4 years ago
Updated 15 February 2025, about 2 months ago

Problem/Motivation

In some situations, it seems that the fix for #3020601 introduces a data compatibility issue.

Briefly, we expect the data to be something like

"field_facility_service_hours": [
        {
            "value": [
                [
                    "Mon",
                    ""
                ],
                [
                    "Tue",
                    ""
                ],

But in some cases it will present as:

"field_facility_service_hours": [
        {
            "value": {
                "0": [
                    "Mon",
                    "8:00 a.m. to 4:30 p.m. ET"
                ],
                "caption": "",
                "1": [
                    "Tue",
                    "8:00 a.m. to 4:30 p.m. ET"
                ],

The issue is the insertion of the `caption` key, which causes the value to be JSON-encoded as an object instead of an array.

Looking in the database, we see the serialized values for some rows being

a:7:{i:0;a:2:{i:0;s:4:"Mon";i:1;s:26:"8:00 a.m. to 4:30 p.m. ET";}i:1;a:2:{i:0;s:4:"Tue";i:1;s:26:"8:00 a.m. to 4:30 p.m. ET";}i:2;a:2:{i:0;s:4:"Wed";i:1;s:26:"8:00 a.m. to 4:30 p.m. ET";}i:3;a:2:{i:0;s:4:"Thu";i:1;s:26:"8:00 a.m. to 4:30 p.m. ET";}i:4;a:2:{i:0;s:4:"Fri";i:1;s:26:"8:00 a.m. to 4:30 p.m. ET";}i:5;a:2:{i:0;s:4:"Sat";i:1;s:0:"";}i:6;a:2:{i:0;s:4:"Sun";i:1;s:0:"";}}

and others being

a:8:{i:0;a:2:{i:0;s:3:"Mon";i:1;s:25:"8:00 a.m. to 4:30 p.m. ET";}s:7:"caption";s:0:"";i:1;a:2:{i:0;s:3:"Tue";i:1;s:25:"8:00 a.m. to 4:30 p.m. ET";}i:2;a:2:{i:0;s:3:"Wed";i:1;s:25:"8:00 a.m. to 4:30 p.m. ET";}i:3;a:2:{i:0;s:3:"Thu";i:1;s:25:"8:00 a.m. to 4:30 p.m. ET";}i:4;a:2:{i:0;s:3:"Fri";i:1;s:25:"8:00 a.m. to 4:30 p.m. ET";}i:5;a:2:{i:0;s:3:"Sat";i:1;s:6:"Closed";}i:6;a:2:{i:0;s:3:"Sun";i:1;s:6:"Closed";}}

This causes consistency issues for the consumers of our content export.

I'm not sure if this is the best way to approach this issue, but I'll submit a patch that removes the problematic lines.

๐Ÿ› Bug report
Status

Needs work

Version

3.0

Component

Code

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States natedouglas

Live updates comments and jobs are added and updated live.
  • Needs reroll

    The patch will have to be re-rolled with new suggestions/changes described in the comments in the issue.

Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024