- FimFictionAPI: fix NPE
- remote: encryption mode changed because Google
- remote: not compatible with 2.x
-- remote: now use password from config file
+- remote: can now use password from config file
- remote: worse perfs but much better memory usage
- remote: log now includes the time of events
/**
* The story resume (a.k.a. description).
+ * <p>
+ * This can be NULL if we don't have a resume for this {@link Story}.
*
* @return the resume
*/
String cover = "none";
if (getCover() != null) {
- cover = StringUtils.formatNumber(getCover().getData().length)
+ cover = StringUtils.formatNumber(getCover().getSize())
+ "bytes";
}