* @brief Checks if a line should be hidden from display. * @param line The line to check * @return true if the line starts with otpauth:// (case-insensitive) */
| 11 | * @return true if the line starts with otpauth:// (case-insensitive) |
| 12 | */ |
| 13 | static auto isLineHidden(const QString &line) -> bool { |
| 14 | return line.startsWith("otpauth://", Qt::CaseInsensitive); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * @brief Parses password file content into structured data. |