aboutsummaryrefslogtreecommitdiff
path: root/units/ib_date.zsh
blob: 6f0c6b6af238f35fd3b6f37160abe2540fa132cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) 2024-2026 Maria Lisina
# Copyright (C) 2024-2026 Danil Lisin
# SPDX-License-Identifier: Apache-2.0

if [[ -n "${ib_created_at}" && "${ib_created_at}" != "null" ]]
then
    if [[ -n "${ib_idate}" ]]
    then
        ib_created_at="$(strftime -r "${ib_idate}" "${ib_created_at}")"
    fi

    ib_date_text="$(strftime "%Y-%m-%d %H:%M" "${ib_created_at}")"
fi